summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-10-19 22:18:21 +0000
committerPaul Phillips <paulp@improving.org>2009-10-19 22:18:21 +0000
commitcb754b1a5698e231c84d94ee18508c21480c2335 (patch)
tree22a16de17b5f3d332dc323bbb8b65c4d7e8914fe /test
parent1e452efbc159bcd553871a44cb697413cc6fc1bd (diff)
downloadscala-cb754b1a5698e231c84d94ee18508c21480c2335.tar.gz
scala-cb754b1a5698e231c84d94ee18508c21480c2335.tar.bz2
scala-cb754b1a5698e231c84d94ee18508c21480c2335.zip
Relaxing a check for ticket #2486, plus test case.
proposing this as the long-term fix (unless by some miracle it is the right fix, in which case good for me.)
Diffstat (limited to 'test')
-rw-r--r--test/files/pos/bug2486.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/files/pos/bug2486.scala b/test/files/pos/bug2486.scala
new file mode 100644
index 0000000000..69fe4c127e
--- /dev/null
+++ b/test/files/pos/bug2486.scala
@@ -0,0 +1,3 @@
+class A[T]
+class B extends A[Int]
+class C[T] extends A[T] { def f(t: A[T]) = t match { case x: B => () } }