summaryrefslogtreecommitdiff
path: root/test/pending/pos/bug0305.scala
blob: 433f0e72c321435f23cdb17770969bd4cf904d2b (plain) (blame)
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):_* ) )

}