aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/t0305.scala
blob: 4838b1fcf867516d59c1d43f36930fd7d6543912 (plain) (tree)
1
2
3
4
5
6
7






                                
object Test extends App {

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

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