aboutsummaryrefslogtreecommitdiff
path: root/tests/patmat/virtpatmat_exhaust_compound.check
diff options
context:
space:
mode:
Diffstat (limited to 'tests/patmat/virtpatmat_exhaust_compound.check')
-rw-r--r--tests/patmat/virtpatmat_exhaust_compound.check15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/patmat/virtpatmat_exhaust_compound.check b/tests/patmat/virtpatmat_exhaust_compound.check
new file mode 100644
index 000000000..72e034068
--- /dev/null
+++ b/tests/patmat/virtpatmat_exhaust_compound.check
@@ -0,0 +1,15 @@
+virtpatmat_exhaust_compound.scala:14: warning: match may not be exhaustive.
+It would fail on the following inputs: O1, O2, O4
+ a match {
+ ^
+virtpatmat_exhaust_compound.scala:18: warning: match may not be exhaustive.
+It would fail on the following input: O4
+ def t1(a: Product with Base with Base2) = a match {
+ ^
+virtpatmat_exhaust_compound.scala:22: warning: match may not be exhaustive.
+It would fail on the following input: O2
+ def t2(a: Product with Base { def foo: Int }) = a match {
+ ^
+error: No warnings can be incurred under -Xfatal-warnings.
+three warnings found
+one error found