aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg/exhausting.check
diff options
context:
space:
mode:
authorSamuel Gruetter <samuel.gruetter@epfl.ch>2014-03-12 22:44:33 +0100
committerSamuel Gruetter <samuel.gruetter@epfl.ch>2014-03-12 22:44:33 +0100
commit9ef5f6817688f814a3450126aa7383b0928e80a0 (patch)
tree5727a2f7f7fd665cefdb312af2785c692f04377c /tests/untried/neg/exhausting.check
parent194be919664447631ba55446eb4874979c908d27 (diff)
downloaddotty-9ef5f6817688f814a3450126aa7383b0928e80a0.tar.gz
dotty-9ef5f6817688f814a3450126aa7383b0928e80a0.tar.bz2
dotty-9ef5f6817688f814a3450126aa7383b0928e80a0.zip
add tests from scala/test/files/{pos,neg}
with explicit Unit return type
Diffstat (limited to 'tests/untried/neg/exhausting.check')
-rw-r--r--tests/untried/neg/exhausting.check27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/untried/neg/exhausting.check b/tests/untried/neg/exhausting.check
new file mode 100644
index 000000000..619849693
--- /dev/null
+++ b/tests/untried/neg/exhausting.check
@@ -0,0 +1,27 @@
+exhausting.scala:21: warning: match may not be exhaustive.
+It would fail on the following inputs: List(_), List(_, _, _)
+ def fail1[T](xs: List[T]) = xs match {
+ ^
+exhausting.scala:27: warning: match may not be exhaustive.
+It would fail on the following input: Nil
+ def fail2[T](xs: List[T]) = xs match {
+ ^
+exhausting.scala:32: warning: match may not be exhaustive.
+It would fail on the following input: List((x: Int forSome x not in (1, 2)))
+ def fail3a(xs: List[Int]) = xs match {
+ ^
+exhausting.scala:39: warning: match may not be exhaustive.
+It would fail on the following input: Bar3
+ def fail3[T](x: Foo[T]) = x match {
+ ^
+exhausting.scala:47: warning: match may not be exhaustive.
+It would fail on the following inputs: (Bar1, Bar2), (Bar1, Bar3), (Bar2, Bar1), (Bar2, Bar2)
+ def fail4[T <: AnyRef](xx: (Foo[T], Foo[T])) = xx match {
+ ^
+exhausting.scala:56: warning: match may not be exhaustive.
+It would fail on the following inputs: (Bar1, Bar2), (Bar1, Bar3), (Bar2, Bar1), (Bar2, Bar2)
+ def fail5[T](xx: (Foo[T], Foo[T])) = xx match {
+ ^
+error: No warnings can be incurred under -Xfatal-warnings.
+6 warnings found
+one error found