summaryrefslogtreecommitdiff
path: root/test/files/resident/bug597/Main.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/resident/bug597/Main.scala')
-rw-r--r--test/files/resident/bug597/Main.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/resident/bug597/Main.scala b/test/files/resident/bug597/Main.scala
new file mode 100644
index 0000000000..24d1327135
--- /dev/null
+++ b/test/files/resident/bug597/Main.scala
@@ -0,0 +1,10 @@
+package test;
+
+object Main {
+ def main(args : Array[String]) : Unit = {
+ new ExtC {
+ type A = Ax;
+ class Ax extends super.Ax;
+ }
+ }
+}