summaryrefslogtreecommitdiff
path: root/test/files/pos/bug210.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug210.scala')
-rw-r--r--test/files/pos/bug210.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/files/pos/bug210.scala b/test/files/pos/bug210.scala
deleted file mode 100644
index 20450335f4..0000000000
--- a/test/files/pos/bug210.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-trait Lang1 {
- trait Exp;
- trait Visitor { def f(left: Exp): unit; }
- class Eval1: Visitor extends Visitor {
- def f(left: Exp) = ();
- }
-}
-
-trait Lang2 extends Lang1 {
- class Eval2: Visitor extends Eval1;
-}
-/*
-object Main with Application {
- val lang2 = new Lang2 {};
- val eval = new lang2.Eval2;
-}
-*/