summaryrefslogtreecommitdiff
path: root/test/files/pos/compound.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/compound.scala')
-rw-r--r--test/files/pos/compound.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/files/pos/compound.scala b/test/files/pos/compound.scala
deleted file mode 100644
index 60890f9102..0000000000
--- a/test/files/pos/compound.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-abstract class A { type T }
-
-abstract class B { val xz: Any }
-
-abstract class Test {
- var yy: A with B { type T; val xz: T } = null;
- var xx: A with B { type T; val xz: T } = null;
- xx = yy;
-}