aboutsummaryrefslogtreecommitdiff
path: root/tests/pending
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-01-01 13:45:08 +0100
committerMartin Odersky <odersky@gmail.com>2015-01-01 13:45:16 +0100
commite3a43806a2b5b17982e942a82cabe139c09d971e (patch)
tree2e4ab893c1a0a640d6933df4bc50dd785fb8a63d /tests/pending
parente50f47c17eea3aee80db2d86e28e7ae016f94cbb (diff)
downloaddotty-e3a43806a2b5b17982e942a82cabe139c09d971e.tar.gz
dotty-e3a43806a2b5b17982e942a82cabe139c09d971e.tar.bz2
dotty-e3a43806a2b5b17982e942a82cabe139c09d971e.zip
Reorg of subtyping.
Plus, RefinedThis gets a second parameter, `level`. This will replace the first one in due time.
Diffstat (limited to 'tests/pending')
-rw-r--r--tests/pending/pos/compound.scala4
-rw-r--r--tests/pending/pos/subtypcycle.scala10
2 files changed, 14 insertions, 0 deletions
diff --git a/tests/pending/pos/compound.scala b/tests/pending/pos/compound.scala
index 60890f910..308ffdfd9 100644
--- a/tests/pending/pos/compound.scala
+++ b/tests/pending/pos/compound.scala
@@ -7,3 +7,7 @@ abstract class Test {
var xx: A with B { type T; val xz: T } = null;
xx = yy;
}
+abstract class Test2 {
+ var yy: A with B { type T; val xz: T } = null;
+ val xx: A with B { type T; val xz: T } = yy
+}
diff --git a/tests/pending/pos/subtypcycle.scala b/tests/pending/pos/subtypcycle.scala
new file mode 100644
index 000000000..76eb7ffec
--- /dev/null
+++ b/tests/pending/pos/subtypcycle.scala
@@ -0,0 +1,10 @@
+object subtypcycle {
+ trait Y {
+ type A <: { type T >: B }
+ type B >: { type T >: A }
+ }
+
+ val y: Y = ???
+ val a: y.A = ???
+ val b: y.B = a
+}