summaryrefslogtreecommitdiff
path: root/test/pending/run/t4098.scala
blob: b74ccf9bff2641aefc91814f9ff5c5c52f1df8cb (plain) (blame)
1
2
3
4
5
6
7
8
9
class A(a: Any) { 
  def this() = { this(b) ; def b = new {} }
}

object Test {
  def main(args: Array[String]): Unit = {
    new A ("")
  }
}