summaryrefslogblamecommitdiff
path: root/test/files/run/t6443-varargs.scala
blob: 9cbae3e99c140c9fa3bf4872c1f31c3cd3e9a94e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                             
object Test {

	def main(args: Array[String]) {
		def foo = {println("foo"); 0}
		lazyDep(X)(foo)
	}

  trait T {
  	type U
  }
  object X extends T { type U = Int }

	def lazyDep(t: T)(us: t.U*) {
		List(us: _*)
	}
}