aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t758.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t758.scala')
-rw-r--r--tests/pending/pos/t758.scala7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/pending/pos/t758.scala b/tests/pending/pos/t758.scala
deleted file mode 100644
index 160bf3717..000000000
--- a/tests/pending/pos/t758.scala
+++ /dev/null
@@ -1,7 +0,0 @@
-trait A { type T; type M >: T }
-trait B extends A {
- val x : String;
- val u : A { type T = B.this.T } ;
- type T = x.type;
- type M = u.M
-}