aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t661.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t661.scala')
-rw-r--r--tests/pending/pos/t661.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/pending/pos/t661.scala b/tests/pending/pos/t661.scala
deleted file mode 100644
index 3a447241f..000000000
--- a/tests/pending/pos/t661.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-package test;
-
-object test {
- abstract class A {
- abstract class C {
- type M;
- def foo(n : M) : Unit = {}
- }
- }
- trait B extends A {
- type N;
- trait C extends super.C {
- type M = N;
- override def foo(n : M) : Unit = super.foo(n);
- }
- }
-}