aboutsummaryrefslogtreecommitdiff
path: root/tests/patmat/t6420.check
diff options
context:
space:
mode:
authorliu fengyun <liu@fengy.me>2017-04-06 15:36:37 +0200
committerliu fengyun <liu@fengy.me>2017-04-06 15:38:04 +0200
commit0c4a06f8409feac5ba99c0a8961210225dbd4936 (patch)
tree9fb1b7e5d0bb52baaf9b771e5f1e4071dc47e708 /tests/patmat/t6420.check
parent52521ea6070d907f77ceab0692f804f52c29ffca (diff)
downloaddotty-0c4a06f8409feac5ba99c0a8961210225dbd4936.tar.gz
dotty-0c4a06f8409feac5ba99c0a8961210225dbd4936.tar.bz2
dotty-0c4a06f8409feac5ba99c0a8961210225dbd4936.zip
exhaustivity support for enums
Diffstat (limited to 'tests/patmat/t6420.check')
-rw-r--r--tests/patmat/t6420.check2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/patmat/t6420.check b/tests/patmat/t6420.check
index 73acf1454..c15701594 100644
--- a/tests/patmat/t6420.check
+++ b/tests/patmat/t6420.check
@@ -1 +1 @@
-5: Pattern Match Exhaustivity: (Nil, _), (List(_, _), _), (Nil, Nil), (Nil, List(_, _)), (List(_, _), Nil), (List(_, _), List(_, _)), (_, Nil), (_, List(_, _))
+5: Pattern Match Exhaustivity: (Nil, _), (List(true, _), _), (List(false, _), _), (_, Nil), (_, List(true, _)), (_, List(false, _))