summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/t3199b.scala
blob: 950c58415329f7fe2dd26c30c66758fc8e83b893 (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())
  }

}