Fix #16517 by bumping the TcLevel for method sigs
There were actually two bugs fixed here: 1. candidateQTyVarsOfType needs to be careful that it does not try to zap metavariables from an outer scope as "naughty" quantification candidates. This commit adds a simple check to avoid doing so. 2. We weren't bumping the TcLevel in kcHsKindSig, which was used only for class method sigs. This mistake led to the acceptance of class C a where meth :: forall k. Proxy (a :: k) -> () Note that k is *locally* quantified. This patch fixes the problem by using tcClassSigType, which correctly bumps the level. It's a bit inefficient because tcClassSigType does other work, too, but it would be tedious to repeat much of the code there with only a few changes. This version works well and is simple. And, while updating comments, etc., I noticed that tcRnType was missing a pushTcLevel, leading to #16767, which this patch also fixes, by bumping the level. In the refactoring here, I also use solveEqualities. This initially failed ghci/scripts/T15415, but that was fixed by teaching solveEqualities to respect -XPartialTypeSignatures. This patch also cleans up some Notes around error generation that came up in conversation. Test case: typecheck/should_fail/T16517, ghci/scripts/T16767
Showing
- compiler/typecheck/TcCanonical.hs 17 additions, 27 deletionscompiler/typecheck/TcCanonical.hs
- compiler/typecheck/TcErrors.hs 10 additions, 2 deletionscompiler/typecheck/TcErrors.hs
- compiler/typecheck/TcHsType.hs 40 additions, 21 deletionscompiler/typecheck/TcHsType.hs
- compiler/typecheck/TcMType.hs 36 additions, 11 deletionscompiler/typecheck/TcMType.hs
- compiler/typecheck/TcRnDriver.hs 4 additions, 3 deletionscompiler/typecheck/TcRnDriver.hs
- compiler/typecheck/TcRnTypes.hs 11 additions, 2 deletionscompiler/typecheck/TcRnTypes.hs
- compiler/typecheck/TcSimplify.hs 4 additions, 3 deletionscompiler/typecheck/TcSimplify.hs
- compiler/typecheck/TcTyClsDecls.hs 4 additions, 2 deletionscompiler/typecheck/TcTyClsDecls.hs
- compiler/typecheck/TcType.hs 18 additions, 16 deletionscompiler/typecheck/TcType.hs
- testsuite/tests/ghci/scripts/T16767.script 3 additions, 0 deletionstestsuite/tests/ghci/scripts/T16767.script
- testsuite/tests/ghci/scripts/T16767.stdout 2 additions, 0 deletionstestsuite/tests/ghci/scripts/T16767.stdout
- testsuite/tests/ghci/scripts/all.T 1 addition, 0 deletionstestsuite/tests/ghci/scripts/all.T
- testsuite/tests/typecheck/should_fail/T16517.hs 5 additions, 0 deletionstestsuite/tests/typecheck/should_fail/T16517.hs
- testsuite/tests/typecheck/should_fail/T16517.stderr 6 additions, 0 deletionstestsuite/tests/typecheck/should_fail/T16517.stderr
- testsuite/tests/typecheck/should_fail/all.T 1 addition, 0 deletionstestsuite/tests/typecheck/should_fail/all.T
- testsuite/tests/typecheck/should_fail/tcfail134.stderr 1 addition, 2 deletionstestsuite/tests/typecheck/should_fail/tcfail134.stderr
Loading
Please register or sign in to comment