summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-03-05 21:06:58 +0000
committerPaul Phillips <paulp@improving.org>2010-03-05 21:06:58 +0000
commit3447b38abc70d910738b5a487ab778a68a6d1f7f (patch)
tree2100daa18acf520cba2eb99a29a0323682575367 /test/files/run
parenta4558a403ae9e1a9901331526c31c6c2d955a956 (diff)
downloadscala-3447b38abc70d910738b5a487ab778a68a6d1f7f.tar.gz
scala-3447b38abc70d910738b5a487ab778a68a6d1f7f.tar.bz2
scala-3447b38abc70d910738b5a487ab778a68a6d1f7f.zip
Fix for #3136 by reverting the line in r18184 w...
Fix for #3136 by reverting the line in r18184 which caused this and other regressions. The downside is that the #1697 test case no longer passes, but protracted shrug because it wasn't entirely fixed anyway. Review by moors. (Can you triangulate your way to a patch where both work simultaneously? It's today's bonus challenge!)
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/bug1697.scala19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/files/run/bug1697.scala b/test/files/run/bug1697.scala
deleted file mode 100644
index 01590dd405..0000000000
--- a/test/files/run/bug1697.scala
+++ /dev/null
@@ -1,19 +0,0 @@
-class Term
-case class Num(n: Int) extends Term
-case class Add(x: Term, y: Term) extends Term
-
-object Value {
- def unapply(term: Any): Boolean = true
-}
-
-object Test {
- def main(args: Array[String]) {
- val term = Add(Num(1), Add(Num(2), Num(3)))
- val res = term match {
- case Add(Num(x), Num(y)) => "Add(Num, Num)"
- case Add(Value(), y) => "Add(Value, ?)"
- case _ => "?"
- }
- assert(res == "Add(Value, ?)")
- }
-}