Fix TcLevel manipulation in TcDerivInfer.simplifyDeriv
The level numbers we were getting simply didn't obey the invariant (ImplicInv) in TcType Note [TcLevel and untouchable type variables] That leads to chaos. Easy to fix. I improved the documentation. I also added an assertion in TcSimplify that checks that level numbers go up by 1 as we dive inside implications, so that we catch the problem at source rather than than through its obscure consequences. That in turn showed up that TcRules was also generating constraints that didn't obey (ImplicInv), so I fixed that too. I have no idea what consequences were lurking behing that bug, but anyway now it's fixed. Hooray.
Showing
- compiler/typecheck/TcDerivInfer.hs 42 additions, 31 deletionscompiler/typecheck/TcDerivInfer.hs
- compiler/typecheck/TcRules.hs 48 additions, 33 deletionscompiler/typecheck/TcRules.hs
- compiler/typecheck/TcSimplify.hs 11 additions, 0 deletionscompiler/typecheck/TcSimplify.hs
- testsuite/tests/quantified-constraints/T15290b.hs 28 additions, 0 deletionstestsuite/tests/quantified-constraints/T15290b.hs
- testsuite/tests/quantified-constraints/T15290b.stderr 14 additions, 0 deletionstestsuite/tests/quantified-constraints/T15290b.stderr
- testsuite/tests/quantified-constraints/all.T 1 addition, 0 deletionstestsuite/tests/quantified-constraints/all.T
Loading
Please register or sign in to comment