summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-04-10 06:30:08 -0700
committerPaul Phillips <paulp@improving.org>2012-04-10 06:42:45 -0700
commit00e9446bfca132bf6ec89b9d75a2b90ad5ea098d (patch)
tree12cae02ad348ce037cd25feeb95c372856356062 /test
parentbed400c5a8d4fc5f5ee4b270f757cdfae94c3f6a (diff)
downloadscala-00e9446bfca132bf6ec89b9d75a2b90ad5ea098d.tar.gz
scala-00e9446bfca132bf6ec89b9d75a2b90ad5ea098d.tar.bz2
scala-00e9446bfca132bf6ec89b9d75a2b90ad5ea098d.zip
Fix for SI-5648.
More care in warning about bad comparisons.
Diffstat (limited to 'test')
-rw-r--r--test/files/run/t5648.check4
-rw-r--r--test/files/run/t5648.flags1
-rw-r--r--test/files/run/t5648.scala10
3 files changed, 15 insertions, 0 deletions
diff --git a/test/files/run/t5648.check b/test/files/run/t5648.check
new file mode 100644
index 0000000000..1140ff52e2
--- /dev/null
+++ b/test/files/run/t5648.check
@@ -0,0 +1,4 @@
+true
+true
+true
+true
diff --git a/test/files/run/t5648.flags b/test/files/run/t5648.flags
new file mode 100644
index 0000000000..e8fb65d50c
--- /dev/null
+++ b/test/files/run/t5648.flags
@@ -0,0 +1 @@
+-Xfatal-warnings \ No newline at end of file
diff --git a/test/files/run/t5648.scala b/test/files/run/t5648.scala
new file mode 100644
index 0000000000..c5cea9e1cb
--- /dev/null
+++ b/test/files/run/t5648.scala
@@ -0,0 +1,10 @@
+case class C(val s: Int*)
+
+object Test {
+ def main(args: Array[String]): Unit = {
+ println(new C(1, 3, 7) == new C(1, 3, 7))
+ println(new C(1, 3, 7) == C(1, 3, 7))
+ println(C(1, 3, 7) == new C(1, 3, 7))
+ println(C(1, 3, 7) == C(1, 3, 7))
+ }
+}