aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/refinedSubtyping.scala
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/pos/refinedSubtyping.scala
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/pos/refinedSubtyping.scala')
-rw-r--r--tests/pos/refinedSubtyping.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/pos/refinedSubtyping.scala b/tests/pos/refinedSubtyping.scala
index a01be181d..329c62314 100644
--- a/tests/pos/refinedSubtyping.scala
+++ b/tests/pos/refinedSubtyping.scala
@@ -60,3 +60,14 @@ class Test3 {
y = x
}
+/* Does not work yet:
+class Test4 {
+
+ abstract class A { type T; val xz: Any }
+
+ val yy: A { val xz: T } = null;
+// val xx: A { val xz: T } = null;
+ val zz: A { val xz: T } = yy;
+
+}
+*/