summaryrefslogtreecommitdiff
path: root/test/files/pos/bug415.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug415.scala')
-rw-r--r--test/files/pos/bug415.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/files/pos/bug415.scala b/test/files/pos/bug415.scala
deleted file mode 100644
index 355b6136d1..0000000000
--- a/test/files/pos/bug415.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-abstract class A {
- type T <: String;
- def x: T;
-}
-
-abstract class B {
- def a: A;
- val y: String = a.x;
-}