summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-01-13 13:13:56 +0100
committerJason Zaugg <jzaugg@gmail.com>2013-01-13 13:15:14 +0100
commit4aba0fe2a2195176693509c735ffdedb52352720 (patch)
tree64c4f30bd776e1a17502db6d0e5cfe30c165f47d
parent9ea0a208346e86031a58fa9c28daf6103778a02f (diff)
downloadscala-4aba0fe2a2195176693509c735ffdedb52352720.tar.gz
scala-4aba0fe2a2195176693509c735ffdedb52352720.tar.bz2
scala-4aba0fe2a2195176693509c735ffdedb52352720.zip
SI-5440 Test case for exhaustiveness check
Reported against patmatclassic, working in virtpatmat.
-rw-r--r--test/files/neg/t5440.check5
-rw-r--r--test/files/neg/t5440.flags1
-rw-r--r--test/files/neg/t5440.scala7
3 files changed, 13 insertions, 0 deletions
diff --git a/test/files/neg/t5440.check b/test/files/neg/t5440.check
new file mode 100644
index 0000000000..a862350a05
--- /dev/null
+++ b/test/files/neg/t5440.check
@@ -0,0 +1,5 @@
+t5440.scala:3: error: match may not be exhaustive.
+It would fail on the following inputs: (List(_), Nil), (Nil, List(_))
+ (list1, list2) match {
+ ^
+one error found
diff --git a/test/files/neg/t5440.flags b/test/files/neg/t5440.flags
new file mode 100644
index 0000000000..e8fb65d50c
--- /dev/null
+++ b/test/files/neg/t5440.flags
@@ -0,0 +1 @@
+-Xfatal-warnings \ No newline at end of file
diff --git a/test/files/neg/t5440.scala b/test/files/neg/t5440.scala
new file mode 100644
index 0000000000..d9cf5d6252
--- /dev/null
+++ b/test/files/neg/t5440.scala
@@ -0,0 +1,7 @@
+object Test {
+ def merge(list1: List[Long], list2: List[Long]): Boolean =
+ (list1, list2) match {
+ case (hd1::_, hd2::_) => true
+ case (Nil, Nil) => true
+ }
+} \ No newline at end of file