aboutsummaryrefslogtreecommitdiff
path: root/tests/pos
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-05-15 13:56:12 +0200
committerMartin Odersky <odersky@gmail.com>2015-05-21 17:41:13 +0200
commit3d9d90e1a29a80f9df968a0e53e01ecb31c397c7 (patch)
treebfe840e089e8c49a4b6b9c0cb45dc27e5c4ea9ea /tests/pos
parent89145d0e166a3042d7530b037a5664f3b1d4f22e (diff)
downloaddotty-3d9d90e1a29a80f9df968a0e53e01ecb31c397c7.tar.gz
dotty-3d9d90e1a29a80f9df968a0e53e01ecb31c397c7.tar.bz2
dotty-3d9d90e1a29a80f9df968a0e53e01ecb31c397c7.zip
Make normalizeToRef survive annotated types
Did not handle this case before.
Diffstat (limited to 'tests/pos')
-rw-r--r--tests/pos/annot.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pos/annot.scala b/tests/pos/annot.scala
index 106057258..e6e4f8051 100644
--- a/tests/pos/annot.scala
+++ b/tests/pos/annot.scala
@@ -22,7 +22,7 @@ class Test {
val x: A @uncheckedVariance with B @uncheckedVariance = ???
- //class C extends A @uncheckedVariance () with B @uncheckedVariance { val x = 10 }
+ class C extends A @uncheckedVariance () with B @uncheckedVariance { val x = 10 }
}