summaryrefslogtreecommitdiff
path: root/test/files/pos/bug0305.scala
blob: 1219c2703055afe2650b0b2b6d958f90bc93ce60 (plain) (blame)
1
2
3
4
5
6
7
object Test extends Application {

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

  assert(foo( List(3):_* ) == 1)
}