diff options
author | Krzysztof Gogolewski <krzysztof.gogolewski@tweag.io> | 2022-03-30 21:11:54 +0200 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2022-04-01 11:14:08 +0100 |
commit | f8f152e7089af9a5434408e17ff071999d381ee1 (patch) | |
tree | d00356e813c0fd95dbf81b796798f35fbe46e32a /testsuite/tests/backpack/should_run/T20133.bkp | |
parent | 691508d87ec089e46524461a5c6ec59b1c17be4c (diff) | |
download | haskell-f8f152e7089af9a5434408e17ff071999d381ee1.tar.gz |
Change GHC.Prim to GHC.Exts in docs and tests
Users are supposed to import GHC.Exts rather than GHC.Prim.
Part of #18749.
Diffstat (limited to 'testsuite/tests/backpack/should_run/T20133.bkp')
-rw-r--r-- | testsuite/tests/backpack/should_run/T20133.bkp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/backpack/should_run/T20133.bkp b/testsuite/tests/backpack/should_run/T20133.bkp index 304f857ae9..557d1f2f7c 100644 --- a/testsuite/tests/backpack/should_run/T20133.bkp +++ b/testsuite/tests/backpack/should_run/T20133.bkp @@ -18,7 +18,7 @@ unit number-unknown where unit number-unboxed-int where module NumberUnknown where import GHC.Types - import GHC.Prim + import GHC.Exts type Rep a = IntRep type Number a = Int# plus :: Int# -> Int# -> Int# |