summaryrefslogtreecommitdiff
path: root/test/pending/pos/t1053.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/pos/t1053.scala')
-rw-r--r--test/pending/pos/t1053.scala6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/pending/pos/t1053.scala b/test/pending/pos/t1053.scala
deleted file mode 100644
index 1d4dfb637e..0000000000
--- a/test/pending/pos/t1053.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-trait T[A] { trait U { type W = A; val x = 3 } }
-
-object Test {
- val x : ({ type V = T[this.type] })#V = null
- val y = new x.U { }
-}