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 8ac328908..04bcd1f5d 100644
--- a/tests/pos/t0066.scala
+++ b/tests/pos/t0066.scala
@@ -1,7 +1,7 @@
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];
+ extends Tree[A,B];
case class Nil[A,B]() extends Tree[A,B];
}