aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t8023.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2015-01-27 11:38:50 +0100
committerMartin Odersky <odersky@gmail.com>2015-01-27 11:38:50 +0100
commit57b616c1a7adc78dd46cb3ae5545e312c11e69be (patch)
tree105089136359d4114b2b16f33c45dfac70b695fe /tests/pos/t8023.scala
parentf59d1d33d6e9dbb2988f165dc9b5b03792218a4c (diff)
downloaddotty-57b616c1a7adc78dd46cb3ae5545e312c11e69be.tar.gz
dotty-57b616c1a7adc78dd46cb3ae5545e312c11e69be.tar.bz2
dotty-57b616c1a7adc78dd46cb3ae5545e312c11e69be.zip
New tests
Diffstat (limited to 'tests/pos/t8023.scala')
-rw-r--r--tests/pos/t8023.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/pos/t8023.scala b/tests/pos/t8023.scala
new file mode 100644
index 000000000..66d478abd
--- /dev/null
+++ b/tests/pos/t8023.scala
@@ -0,0 +1,9 @@
+class C[K]
+class D[K]
+
+object Test3 {
+ def foo = (null: Any) match {
+ case a: C[k] => new C[k]() // this one worked before as the info of `A` was complete
+ // ()
+ }
+}