summaryrefslogtreecommitdiff
path: root/test/files/pos/t1480.scala
diff options
context:
space:
mode:
authorDavid MacIver <david.maciver@gmail.com>2008-11-10 00:29:09 +0000
committerDavid MacIver <david.maciver@gmail.com>2008-11-10 00:29:09 +0000
commit5d6c2cb4c663f4351f5eacb6c9f6f9b0cedf4966 (patch)
tree797cc6fc9ba4caa5f2ae0fc1823c7b58d0ea6018 /test/files/pos/t1480.scala
parentfff82dd82874892d0e00f6d0986be8951180f7f6 (diff)
downloadscala-5d6c2cb4c663f4351f5eacb6c9f6f9b0cedf4966.tar.gz
scala-5d6c2cb4c663f4351f5eacb6c9f6f9b0cedf4966.tar.bz2
scala-5d6c2cb4c663f4351f5eacb6c9f6f9b0cedf4966.zip
Reversion of the changes to targetParams which ...
Reversion of the changes to targetParams which I made to fix #1260 as they caused problems (specifically #1480). This code is wrong but it's the old wrong behaviour, which is less broken than the new wrong behaviour.
Diffstat (limited to 'test/files/pos/t1480.scala')
-rw-r--r--test/files/pos/t1480.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/pos/t1480.scala b/test/files/pos/t1480.scala
new file mode 100644
index 0000000000..1d9f94d2e9
--- /dev/null
+++ b/test/files/pos/t1480.scala
@@ -0,0 +1,6 @@
+class Foo{
+ def compare(newP : Any, oldP : Any) : Boolean = (newP,oldP) match {
+ case (newP : AnyRef, oldP : AnyRef) if newP == oldP => newP == oldP
+ case (newS : Symbol, oldS: Symbol) if newS == oldS => newS == oldS
+ }
+}