DEBSOURCES
Skip Quicknav
sources / scala / 2.7.7.dfsg-4 / test / files / neg / bug452.scala
12345678
object Test { class Foo(x: Foo) { def this() = this(this); } def main(args: Array[String]): Unit = { new Foo(); } }