aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t0069.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t0069.scala')
-rw-r--r--tests/untried/pos/t0069.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/untried/pos/t0069.scala b/tests/untried/pos/t0069.scala
deleted file mode 100644
index e4c242c0e..000000000
--- a/tests/untried/pos/t0069.scala
+++ /dev/null
@@ -1,10 +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;
- */
-
-}