summaryrefslogtreecommitdiff
path: root/test/files/pos/bug66.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug66.scala')
-rw-r--r--test/files/pos/bug66.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/pos/bug66.scala b/test/files/pos/bug66.scala
new file mode 100644
index 0000000000..2153264e7a
--- /dev/null
+++ b/test/files/pos/bug66.scala
@@ -0,0 +1,7 @@
+class GBTree[A, B] /*with Map[A, B, GBTree[A,B]]*/ {
+ abstract class Tree[A,B];
+ case class Node[A,B](key:A,value:B,smaller:Node[A,B],bigger:Node[A,B])
+ extends Tree[A,B];
+ case class Nil[A,B]() extends Tree[A,B];
+
+}