summaryrefslogtreecommitdiff
path: root/test/pos/bug69.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pos/bug69.scala')
-rw-r--r--test/pos/bug69.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/pos/bug69.scala b/test/pos/bug69.scala
deleted file mode 100644
index 113820613f..0000000000
--- a/test/pos/bug69.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-object testCQ {
- // why does this not work directly
- case class Thing( name:String, contains:List[ Thing ] );
-
- /* ... but this one does?
- abstract class T;
- case class Thing2( name:String, contains:List[ T ] ) extends T;
- */
-
-}
-