aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0069.scala
diff options
context:
space:
mode:
authorTobias Schlatter <tobias@meisch.ch>2014-03-20 20:23:02 +0100
committerTobias Schlatter <tobias@meisch.ch>2014-03-20 20:25:05 +0100
commite50646c21cbc842c1188fc876e16ea2b3e2a2ea3 (patch)
tree8355f0ef64102f569ebd970e49c2a591116d0b44 /tests/pos/t0069.scala
parenta4516eac1be98830c99ea48e9baedf022dfcb9f7 (diff)
downloaddotty-e50646c21cbc842c1188fc876e16ea2b3e2a2ea3.tar.gz
dotty-e50646c21cbc842c1188fc876e16ea2b3e2a2ea3.tar.bz2
dotty-e50646c21cbc842c1188fc876e16ea2b3e2a2ea3.zip
Minor improvements to tests (remove old comments)
Diffstat (limited to 'tests/pos/t0069.scala')
-rw-r--r--tests/pos/t0069.scala7
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/pos/t0069.scala b/tests/pos/t0069.scala
index e4c242c0e..23a25dbec 100644
--- a/tests/pos/t0069.scala
+++ b/tests/pos/t0069.scala
@@ -1,10 +1,5 @@
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;
- */
+ case class Thing( name:String, contains:List[ Thing ] );
}