summaryrefslogtreecommitdiff
path: root/test/files/neg
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg')
-rw-r--r--test/files/neg/t7020.check17
-rw-r--r--test/files/neg/t7020.flags1
-rw-r--r--test/files/neg/t7020.scala30
3 files changed, 0 insertions, 48 deletions
diff --git a/test/files/neg/t7020.check b/test/files/neg/t7020.check
deleted file mode 100644
index a869b12363..0000000000
--- a/test/files/neg/t7020.check
+++ /dev/null
@@ -1,17 +0,0 @@
-t7020.scala:3: error: 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(_, _)
- List(5) match {
- ^
-t7020.scala:10: error: 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(_, _)
- List(5) match {
- ^
-t7020.scala:17: error: 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(_, _)
- List(5) match {
- ^
-t7020.scala:24: error: 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(_, _)
- List(5) match {
- ^
-four errors found
diff --git a/test/files/neg/t7020.flags b/test/files/neg/t7020.flags
deleted file mode 100644
index e8fb65d50c..0000000000
--- a/test/files/neg/t7020.flags
+++ /dev/null
@@ -1 +0,0 @@
--Xfatal-warnings \ No newline at end of file
diff --git a/test/files/neg/t7020.scala b/test/files/neg/t7020.scala
deleted file mode 100644
index cc5421bab1..0000000000
--- a/test/files/neg/t7020.scala
+++ /dev/null
@@ -1,30 +0,0 @@
-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 =>
- }
-}