summaryrefslogtreecommitdiff
path: root/test/files/run/t6443-by-name.scala
blob: bfd9bf9791afb562996944b0d50917a7bc089cb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)(u: => t.U) {
		println("1")
		u
		u
	}
}