Fix deriveTyData's kind unification when two kind variables are unified
When `deriveTyData` attempts to unify two kind variables (which can happen if both the typeclass and the datatype are poly-kinded), it mistakenly adds an extra mapping to its substitution which causes the unification to fail when applying the substitution. This can be prevented by checking both the domain and the range of the original substitution to see which kind variables shouldn't be put into the domain of the substitution. A more in-depth explanation is included in `Note [Unification of two kind variables in deriving]`. Fixes #11837. Test Plan: ./validate Reviewers: simonpj, hvr, goldfire, niteria, austin, bgamari Reviewed By: bgamari Subscribers: niteria, thomie Differential Revision: https://phabricator.haskell.org/D2117 GHC Trac Issues: #11837
Showing
- compiler/typecheck/TcDeriv.hs 55 additions, 5 deletionscompiler/typecheck/TcDeriv.hs
- compiler/types/TyCoRep.hs 11 additions, 1 deletioncompiler/types/TyCoRep.hs
- compiler/types/Type.hs 1 addition, 1 deletioncompiler/types/Type.hs
- testsuite/tests/deriving/should_compile/T11837.hs 9 additions, 0 deletionstestsuite/tests/deriving/should_compile/T11837.hs
- testsuite/tests/deriving/should_compile/all.T 1 addition, 0 deletionstestsuite/tests/deriving/should_compile/all.T
Loading
Please register or sign in to comment