aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/t3158.scala
blob: b9304ee445cb3d97a0ecf5905c8cc803951ca229 (plain) (tree)
1
2
3
4
5
6
7
8
9
             
                                         


                                      
                                


               
object Test {
  def main(args: Array[String]): Unit = {
    println(args.map(_ => foo _).deep)
  }

  def foo(xs: String*): Unit = {
    println(xs)
  }
}