aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/Patterns.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/Patterns.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/Patterns.scala')
-rw-r--r--tests/pos/Patterns.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pos/Patterns.scala b/tests/pos/Patterns.scala
index 54c4d8ab2..98af1cddb 100644
--- a/tests/pos/Patterns.scala
+++ b/tests/pos/Patterns.scala
@@ -6,7 +6,7 @@ object Patterns {
private def rebase(tp: NamedType): Type = {
def rebaseFrom(prefix: Type): Type = ???
tp.prefix match {
- case RefinedThis(rt) => rebaseFrom(rt)
+ case RefinedThis(rt, _) => rebaseFrom(rt)
case pre: ThisType => rebaseFrom(pre)
case _ => tp
}