summaryrefslogtreecommitdiff
path: root/test/files/disabled
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-10-18 16:18:37 +0200
committerJason Zaugg <jzaugg@gmail.com>2013-10-18 16:18:37 +0200
commite9307e17990ed536e437755a87f41cbd98fb62fc (patch)
tree201543f9d672cab0946c95a30a4ca74ad1dd72dc /test/files/disabled
parent5b2c4644a23ffbe1c45df40bf3511aee71eb0fe2 (diff)
parent371bad2fe657d7fd065a47dc38fa5ae1fea882a7 (diff)
downloadscala-e9307e17990ed536e437755a87f41cbd98fb62fc.tar.gz
scala-e9307e17990ed536e437755a87f41cbd98fb62fc.tar.bz2
scala-e9307e17990ed536e437755a87f41cbd98fb62fc.zip
Merge remote-tracking branch 'origin/2.10.x' into merge/2.10.x-to-master-4
Diffstat (limited to 'test/files/disabled')
-rw-r--r--test/files/disabled/t7020.check19
-rw-r--r--test/files/disabled/t7020.flags1
-rw-r--r--test/files/disabled/t7020.scala30
3 files changed, 50 insertions, 0 deletions
diff --git a/test/files/disabled/t7020.check b/test/files/disabled/t7020.check
new file mode 100644
index 0000000000..f9600ca7fc
--- /dev/null
+++ b/test/files/disabled/t7020.check
@@ -0,0 +1,19 @@
+t7020.scala:3: warning: match may not be exhaustive.
+It would fail on the following inputs: List((x: Int forSome x not in (1, 2, 4, 5, 6, 7))), List((x: Int forSome x not in (1, 2, 4, 5, 6, 7)), _), List(1, _), List(2, _), List(4, _), List(5, _), List(6, _), List(7, _), List(??, _), List(_, _)
+ List(5) match {
+ ^
+t7020.scala:10: warning: match may not be exhaustive.
+It would fail on the following inputs: List((x: Int forSome x not in (1, 2, 4, 5, 6, 7))), List((x: Int forSome x not in (1, 2, 4, 5, 6, 7)), _), List(1, _), List(2, _), List(4, _), List(5, _), List(6, _), List(7, _), List(??, _), List(_, _)
+ List(5) match {
+ ^
+t7020.scala:17: warning: match may not be exhaustive.
+It would fail on the following inputs: List((x: Int forSome x not in (1, 2, 4, 5, 6, 7))), List((x: Int forSome x not in (1, 2, 4, 5, 6, 7)), _), List(1, _), List(2, _), List(4, _), List(5, _), List(6, _), List(7, _), List(??, _), List(_, _)
+ List(5) match {
+ ^
+t7020.scala:24: warning: match may not be exhaustive.
+It would fail on the following inputs: List((x: Int forSome x not in (1, 2, 4, 5, 6, 7))), List((x: Int forSome x not in (1, 2, 4, 5, 6, 7)), _), List(1, _), List(2, _), List(4, _), List(5, _), List(6, _), List(7, _), List(??, _), List(_, _)
+ List(5) match {
+ ^
+error: No warnings can be incurred under -Xfatal-warnings.
+four warnings found
+one error found
diff --git a/test/files/disabled/t7020.flags b/test/files/disabled/t7020.flags
new file mode 100644
index 0000000000..e8fb65d50c
--- /dev/null
+++ b/test/files/disabled/t7020.flags
@@ -0,0 +1 @@
+-Xfatal-warnings \ No newline at end of file
diff --git a/test/files/disabled/t7020.scala b/test/files/disabled/t7020.scala
new file mode 100644
index 0000000000..cc5421bab1
--- /dev/null
+++ b/test/files/disabled/t7020.scala
@@ -0,0 +1,30 @@
+object Test {
+ // warning was non-deterministic
+ List(5) match {
+ case 1 :: Nil | 2 :: Nil =>
+ case (x@(4 | 5 | 6)) :: Nil =>
+ case 7 :: Nil =>
+ case Nil =>
+ }
+
+ List(5) match {
+ case 1 :: Nil | 2 :: Nil =>
+ case (x@(4 | 5 | 6)) :: Nil =>
+ case 7 :: Nil =>
+ case Nil =>
+ }
+
+ List(5) match {
+ case 1 :: Nil | 2 :: Nil =>
+ case (x@(4 | 5 | 6)) :: Nil =>
+ case 7 :: Nil =>
+ case Nil =>
+ }
+
+ List(5) match {
+ case 1 :: Nil | 2 :: Nil =>
+ case (x@(4 | 5 | 6)) :: Nil =>
+ case 7 :: Nil =>
+ case Nil =>
+ }
+}