summaryrefslogblamecommitdiff
path: root/test/pending/pos/bug0305.scala
blob: 3e7e8c60f4385068e51d13458434faf85faf6c32 (plain) (tree)
1
2
3
4
5
6
7
8







                                      
object Test extends Application {

  def foo(is:int*) = 1;
  def foo(i:int) = 2;

  Console.println( foo( List(3):_* ) )

}