aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0066.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/t0066.scala')
-rw-r--r--tests/pos/t0066.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pos/t0066.scala b/tests/pos/t0066.scala
index 2153264e7..8ac328908 100644
--- a/tests/pos/t0066.scala
+++ b/tests/pos/t0066.scala
@@ -1,4 +1,4 @@
-class GBTree[A, B] /*with Map[A, B, GBTree[A,B]]*/ {
+class 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];