summaryrefslogtreecommitdiff
path: root/test/files/resident/bug597/Main.scala
blob: 24d13271357127ff7c34b0d986eab82a6018f348 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package test;

object Main {
  def main(args : Array[String]) : Unit = {
    new ExtC {
      type A = Ax;
      class Ax extends super.Ax;
    }
  }
}