aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t2613.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t2613.scala')
-rw-r--r--tests/untried/pos/t2613.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/untried/pos/t2613.scala b/tests/untried/pos/t2613.scala
deleted file mode 100644
index 3a64dbc28..000000000
--- a/tests/untried/pos/t2613.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-import language.existentials
-
-object Test {
- class Row
-
- abstract class MyRelation [R <: Row, +Relation <: MyRelation[R, Relation]]
-
- type M = MyRelation[R, Relation] forSome {type R <: Row; type Relation <: MyRelation[R, Relation]}
-
- var (x,y): (String, M) = null
-}