summaryrefslogtreecommitdiff
path: root/test-nsc/files/pos/bug116.scala
blob: b02c81f0b75e84890945266ec49df716ec5ad1f9 (plain) (blame)
1
2
3
4
5
6
7
8
// $Id$

class C {
  def this(x: Int) = {
    this();
    class D extends C;
  }
}