Re-quantify when generalising over rewrite rule types
Previously, `tcRules` would check for naughty quantification candidates (see `Note [Naughty quantification candidates]` in `TcMType`) when generalising over the type of a rewrite rule. This caused sensible-looking rewrite rules (like those in #17710) to be rejected. A more permissing (and easier-to-implement) approach is to do what is described in `Note [Generalising in tcTyFamInstEqnGuts]` in `TcTyClsDecls`: just re-quantify all the type variable binders, regardless of the order in which the user specified them. After all, the notion of type variable specificity has no real meaning in rewrite rules, since one cannot "visibly apply" a rewrite rule. I have written up this wisdom in `Note [Re-quantify type variables in rules]` in `TcRules`. As a result of this patch, compiling the `ExplicitForAllRules1` test case now generates one fewer warning than it used to. As far as I can tell, this is benign, since the thing that the disappearing warning talked about was also mentioned in an entirely separate warning. Fixes #17710.
Showing
- compiler/typecheck/TcRules.hs 48 additions, 14 deletionscompiler/typecheck/TcRules.hs
- compiler/typecheck/TcTyClsDecls.hs 3 additions, 0 deletionscompiler/typecheck/TcTyClsDecls.hs
- testsuite/tests/rename/should_compile/ExplicitForAllRules1.stderr 0 additions, 10 deletions...e/tests/rename/should_compile/ExplicitForAllRules1.stderr
- testsuite/tests/typecheck/should_compile/T17710.hs 15 additions, 0 deletionstestsuite/tests/typecheck/should_compile/T17710.hs
- testsuite/tests/typecheck/should_compile/all.T 1 addition, 0 deletionstestsuite/tests/typecheck/should_compile/all.T
Loading
Please register or sign in to comment