aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t201.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t201.scala')
-rw-r--r--tests/untried/pos/t201.scala7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/untried/pos/t201.scala b/tests/untried/pos/t201.scala
deleted file mode 100644
index b0c6b8da4..000000000
--- a/tests/untried/pos/t201.scala
+++ /dev/null
@@ -1,7 +0,0 @@
-class C[a] { def f: a = f; }
-class D[b] { class E extends C[b]; }
-object Test {
- val d = new D[Int];
- def e = new d.E;
- e.f;
-}