Fall back to types when looking up data constructors (#18740)
Before this patch, referring to a data constructor in a term-level context led to a scoping error: ghci> id Int <interactive>:1:4: error: Data constructor not in scope: Int After this patch, the renamer falls back to the type namespace and successfully finds the Int. It is then rejected in the type checker with a more useful error message: <interactive>:1:4: error: • Illegal term-level use of the type constructor ‘Int’ imported from ‘Prelude’ (and originally defined in ‘GHC.Types’) • In the first argument of ‘id’, namely ‘Int’ In the expression: id Int We also do this for type variables.
parent
274e21f0
No related branches found
No related tags found
Pipeline #26187 passed with warnings
Stage: tool-lint
Stage: quick-build
Stage: lint
Stage: build
Stage: full-build
Stage: packaging
Stage: testing
Stage: deploy
Showing
- compiler/GHC/HsToCore/Quote.hs 5 additions, 2 deletionscompiler/GHC/HsToCore/Quote.hs
- compiler/GHC/Rename/Env.hs 48 additions, 8 deletionscompiler/GHC/Rename/Env.hs
- compiler/GHC/Tc/Gen/Head.hs 23 additions, 1 deletioncompiler/GHC/Tc/Gen/Head.hs
- compiler/GHC/Types/Name/Occurrence.hs 18 additions, 2 deletionscompiler/GHC/Types/Name/Occurrence.hs
- compiler/GHC/Types/Name/Reader.hs 10 additions, 2 deletionscompiler/GHC/Types/Name/Reader.hs
- testsuite/tests/module/mod132.stderr 5 additions, 2 deletionstestsuite/tests/module/mod132.stderr
- testsuite/tests/module/mod147.stderr 6 additions, 1 deletiontestsuite/tests/module/mod147.stderr
- testsuite/tests/rename/should_fail/RnStaticPointersFail02.stderr 6 additions, 2 deletions...te/tests/rename/should_fail/RnStaticPointersFail02.stderr
- testsuite/tests/rename/should_fail/T18740a.hs 3 additions, 0 deletionstestsuite/tests/rename/should_fail/T18740a.hs
- testsuite/tests/rename/should_fail/T18740a.stderr 7 additions, 0 deletionstestsuite/tests/rename/should_fail/T18740a.stderr
- testsuite/tests/rename/should_fail/T18740b.hs 6 additions, 0 deletionstestsuite/tests/rename/should_fail/T18740b.hs
- testsuite/tests/rename/should_fail/T18740b.stderr 6 additions, 0 deletionstestsuite/tests/rename/should_fail/T18740b.stderr
- testsuite/tests/rename/should_fail/all.T 2 additions, 0 deletionstestsuite/tests/rename/should_fail/all.T
- testsuite/tests/th/T14627.stderr 6 additions, 1 deletiontestsuite/tests/th/T14627.stderr
- testsuite/tests/th/T18740c.hs 9 additions, 0 deletionstestsuite/tests/th/T18740c.hs
- testsuite/tests/th/T18740c.stderr 6 additions, 0 deletionstestsuite/tests/th/T18740c.stderr
- testsuite/tests/th/T18740d.hs 17 additions, 0 deletionstestsuite/tests/th/T18740d.hs
- testsuite/tests/th/T18740d.stderr 5 additions, 0 deletionstestsuite/tests/th/T18740d.stderr
- testsuite/tests/th/all.T 2 additions, 0 deletionstestsuite/tests/th/all.T
Loading
Please register or sign in to comment