DEBSOURCES
Skip Quicknav
sources / scala / 2.11.12-6 / test / files / pos / annot-inner.scala
123456789
object test { class annot extends scala.annotation.Annotation def foo { @annot def bar(i: Int): Int = i @annot class Silly { } bar(5) } }