DEBSOURCES
Skip Quicknav
sources / scala / 2.11.12-4 / test / files / pos / rangepos-anonapply.scala
123456789
class Test { trait PropTraverser { def apply(x: Int): Unit = {} } def gather(x: Int) { (new PropTraverser {})(x) } }