summaryrefslogtreecommitdiff
path: root/test/files/run/t3488.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t3488.scala')
-rw-r--r--test/files/run/t3488.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t3488.scala b/test/files/run/t3488.scala
index 20a1400dce..a8cfa9b808 100644
--- a/test/files/run/t3488.scala
+++ b/test/files/run/t3488.scala
@@ -1,6 +1,6 @@
object Test extends App {
def foo(p: => Unit)(x:Int = 0) = x
-
+
println(foo { val List(_*)=List(0); 1 } ())
println(foo { val List(_*)=List(0); 1 } (1))
}