DEBSOURCES
Skip Quicknav
sources / scala / 2.11.12-6 / test / files / pos / t4502.scala
123456789101112
class T { def send(o: Any, d: Int = 10) { } def c(f: => Any) { } def f() { var a = this a.send( c(a.send(())) ) } }