summaryrefslogtreecommitdiff
path: root/test/files/run/t3488.scala
blob: 20a1400dced17dbcf97d143713e36364041ac7b8 (plain) (blame)
1
2
3
4
5
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))
}