summaryrefslogtreecommitdiff
path: root/test/files/jvm/t1342/SI.scala
blob: 8e3b7532102808dafcac04f8cc7123c2191cd7f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
class SI extends JI {
   def varArgsMethod( args : String*) {
        for( arg <- args ) println( arg )
   }
}

object Test extends Application {
  val x: JI = new SI
  x.varArgsMethod("one", "two")
}