summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/t3199b.scala
blob: 2122c963acf4250dd7900c9d1410c57dd681c432 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
object Test {
  
  def test() = {
    java.util.Arrays.asList(Array(1,2,3):_*)
  }
  
  def main(args: Array[String]) = {
    println(test())
  }
  
}