aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t2698.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t2698.scala')
-rw-r--r--tests/untried/pos/t2698.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/untried/pos/t2698.scala b/tests/untried/pos/t2698.scala
deleted file mode 100644
index bce02e48b..000000000
--- a/tests/untried/pos/t2698.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-class WordExp {
- abstract class Label
- type _labelT <: Label
-}
-
-import scala.collection._
-
-abstract class S2 {
- val lang: WordExp
- type __labelT = lang._labelT
-
- var deltaq: Array[__labelT] = _
- def delta1 = immutable.Map(deltaq.zipWithIndex: _*)
-}