From 27cc89d8b8a315649e980158fe4ff2dfb2eda5e4 Mon Sep 17 00:00:00 2001 From: Matt Bovel Date: Wed, 1 May 2024 16:45:09 +0200 Subject: [PATCH] Fix indentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sébastien Doeraene --- tests/warn/i17493.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/warn/i17493.scala b/tests/warn/i17493.scala index 69816467d3ae..f76f3aeb02af 100644 --- a/tests/warn/i17493.scala +++ b/tests/warn/i17493.scala @@ -1,5 +1,5 @@ //> using options -explain - class A(val s: String) extends AnyVal { +class A(val s: String) extends AnyVal { // def f = eq("hello, world") // no warning for now because `eq` is inlined def g = synchronized { println("hello, world") } // warn - } +}