aboutsummaryrefslogtreecommitdiff
path: root/tests/pos-special
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-11-17 17:08:26 +0100
committerMartin Odersky <odersky@gmail.com>2014-11-17 17:08:42 +0100
commite63feffe063987df54cb9a5916003eb400c0b49d (patch)
tree2fa127537afdcdfaf0b6847232382c9c3b03275d /tests/pos-special
parenta75b21b43962e809284f923741c0aa7a03499ab3 (diff)
downloaddotty-e63feffe063987df54cb9a5916003eb400c0b49d.tar.gz
dotty-e63feffe063987df54cb9a5916003eb400c0b49d.tar.bz2
dotty-e63feffe063987df54cb9a5916003eb400c0b49d.zip
Moved pending tests that work into pos and neg.
One test (t2613) required lifting a hard recursion limit in findMember (used for debug only, will be removed in the future). The same test also requires -Yno-deep-subtypes to be reset, so it's in pos_special instead of pos.
Diffstat (limited to 'tests/pos-special')
-rw-r--r--tests/pos-special/t2613.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/pos-special/t2613.scala b/tests/pos-special/t2613.scala
new file mode 100644
index 000000000..c234d4c0d
--- /dev/null
+++ b/tests/pos-special/t2613.scala
@@ -0,0 +1,11 @@
+import language.existentials
+
+object Test {
+ class Row
+
+ abstract class MyRelation [R <: Row, +Relation <: MyRelation[R, Relation]]
+
+ type M = MyRelation[_ <: Row, _ <: MyRelation]
+
+ val (x,y): (String, M) = null
+}