summaryrefslogtreecommitdiff
path: root/test-nsc/files/pos/bug360.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test-nsc/files/pos/bug360.scala')
-rw-r--r--test-nsc/files/pos/bug360.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/test-nsc/files/pos/bug360.scala b/test-nsc/files/pos/bug360.scala
deleted file mode 100644
index 0fcb5cb161..0000000000
--- a/test-nsc/files/pos/bug360.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-// $Id$
-
-abstract class Bug360A: Bug360C {
- def f: String = "hello";
-}
-trait Bug360B: Bug360C {
- object d {
- System.out.println(f);
- }
-}
-abstract class Bug360C extends Bug360A with Bug360B;