summaryrefslogtreecommitdiff
path: root/test/files/pos/t0066.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t0066.scala')
-rw-r--r--test/files/pos/t0066.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t0066.scala b/test/files/pos/t0066.scala
index 9317da7165..2153264e7a 100644
--- a/test/files/pos/t0066.scala
+++ b/test/files/pos/t0066.scala
@@ -3,5 +3,5 @@ class GBTree[A, B] /*with Map[A, B, GBTree[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];
-
+
}