summaryrefslogtreecommitdiff
path: root/test/files/run/bug1141.scala
blob: 9641343c7edf221b5c2dff59faf16879358d8c95 (plain) (blame)
1
2
3
4
5
6
7
object Test extends App {
  val foo = new {
    def apply(args : String*) = args foreach println
  }

  foo("var", "args")
}