aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t116.scala
blob: 1e31b71bf04ad49c3f7bf37df86655b4af7bb170 (plain) (blame)
1
2
3
4
5
6
class C {
  def this(x: Int) = {
    this();
    class D extends C;
  }
}