summaryrefslogtreecommitdiff
path: root/testsuite/tests/pmcheck/should_compile/pmc007.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/pmcheck/should_compile/pmc007.stderr')
-rw-r--r--testsuite/tests/pmcheck/should_compile/pmc007.stderr14
1 files changed, 7 insertions, 7 deletions
diff --git a/testsuite/tests/pmcheck/should_compile/pmc007.stderr b/testsuite/tests/pmcheck/should_compile/pmc007.stderr
index f6e4ece88c..d4bbe8fb73 100644
--- a/testsuite/tests/pmcheck/should_compile/pmc007.stderr
+++ b/testsuite/tests/pmcheck/should_compile/pmc007.stderr
@@ -2,24 +2,24 @@
pmc007.hs:7:1: warning: [-Wincomplete-patterns (in -Wextra)]
Pattern match(es) are non-exhaustive
In an equation for ā€˜fā€™:
- Patterns not matched: p where p is not one of {"ac", "ab"}
+ Patterns not matched: p where p is not one of {"ab", "ac"}
pmc007.hs:12:1: warning: [-Wincomplete-patterns (in -Wextra)]
Pattern match(es) are non-exhaustive
In an equation for ā€˜gā€™:
Patterns not matched:
- []
- (p:_) where p is not one of {'a'}
+ ('a':'b':_:_)
+ ('a':'c':_:_)
+ ('a':p:_) where p is not one of {'b', 'c'}
['a']
- ('a':p:_) where p is not one of {'c', 'b'}
...
pmc007.hs:18:11: warning: [-Wincomplete-patterns (in -Wextra)]
Pattern match(es) are non-exhaustive
In a case alternative:
Patterns not matched:
- []
- (p:_) where p is not one of {'a'}
+ ('a':'b':_:_)
+ ('a':'c':_:_)
+ ('a':p:_) where p is not one of {'b', 'c'}
['a']
- ('a':p:_) where p is not one of {'c', 'b'}
...