summaryrefslogtreecommitdiff
path: root/test/pending/pos/t1439.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2008-10-21 10:56:47 +0000
committerMartin Odersky <odersky@gmail.com>2008-10-21 10:56:47 +0000
commitb3057cb638d7ad4ad978d164ff58d838e074ca12 (patch)
tree2956cd67286f90b8bd72f2eb91809b531fa2f9a7 /test/pending/pos/t1439.scala
parent54a4542917db2efea22af91cfadc56b268f797f5 (diff)
downloadscala-b3057cb638d7ad4ad978d164ff58d838e074ca12.tar.gz
scala-b3057cb638d7ad4ad978d164ff58d838e074ca12.tar.bz2
scala-b3057cb638d7ad4ad978d164ff58d838e074ca12.zip
new tests in pending
Diffstat (limited to 'test/pending/pos/t1439.scala')
-rw-r--r--test/pending/pos/t1439.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/pending/pos/t1439.scala b/test/pending/pos/t1439.scala
new file mode 100644
index 0000000000..ae1fdd10b5
--- /dev/null
+++ b/test/pending/pos/t1439.scala
@@ -0,0 +1,7 @@
+class View[C[A]] {}
+
+object Test {
+ null match {
+ case v: View[_] =>
+ }
+}