Make `singleConstructor` cope with pattern synonyms
Previously, `singleConstructor` didn't handle singleton `COMPLETE` sets of a single pattern synonym, resulting in incomplete pattern warnings in #15753. This is fixed by making `singleConstructor` (now named `singleMatchConstructor`) query `allCompleteMatches`, necessarily making it effectful. As a result, most of this patch is concerned with threading the side-effect through to `singleMatchConstructor`. Unfortunately, this is not enough to completely fix the original reproduction from #15753 and #15884, which are related to function applications in pattern guards being translated too conservatively.
parent
4626cf21
Pipeline #4407 passed with warnings
Stage: lint
Stage: build
Stage: full-build
Stage: cleanup
Stage: packaging
Stage: hackage
Showing
- compiler/deSugar/Check.hs 92 additions, 53 deletionscompiler/deSugar/Check.hs
- testsuite/tests/pmcheck/should_compile/T15753a.hs 28 additions, 0 deletionstestsuite/tests/pmcheck/should_compile/T15753a.hs
- testsuite/tests/pmcheck/should_compile/T15753b.hs 10 additions, 0 deletionstestsuite/tests/pmcheck/should_compile/T15753b.hs
- testsuite/tests/pmcheck/should_compile/T15884.hs 7 additions, 0 deletionstestsuite/tests/pmcheck/should_compile/T15884.hs
- testsuite/tests/pmcheck/should_compile/all.T 6 additions, 0 deletionstestsuite/tests/pmcheck/should_compile/all.T
Loading
Please register or sign in to comment