summaryrefslogtreecommitdiff
path: root/test/files/neg/t452.scala
blob: 855406d0c4462cce528fa96f4b9c0c968016cf65 (plain) (blame)
1
2
3
4
5
6
7
8
object Test {
  class Foo(x: Foo) {
    def this() = this(this);
  }
  def main(args: Array[String]): Unit = {
    new Foo();
  }
}