summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Henry <sylvain@haskus.fr>2021-04-03 16:58:43 +0200
committerSylvain Henry <sylvain@haskus.fr>2021-04-06 10:20:32 +0200
commit3dc0815eeac410fce8bf810da8c1ba9eea5fba45 (patch)
tree360ed32a5255d187f37e7fd3ece198770745ddfc
parent370dbf7b9cf97585767bd30742292d7a0a941e5e (diff)
downloadhaskell-3dc0815eeac410fce8bf810da8c1ba9eea5fba45.tar.gz
Bignum: fix invalid hs-boot declaration (#19638)
Cherry-picked from 54880c131db75d7daad1d7acb3cb0f25371a9128
-rw-r--r--libraries/ghc-bignum/src/GHC/Num/Natural.hs-boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/ghc-bignum/src/GHC/Num/Natural.hs-boot b/libraries/ghc-bignum/src/GHC/Num/Natural.hs-boot
index 57e1a9d9a9..f902323f2a 100644
--- a/libraries/ghc-bignum/src/GHC/Num/Natural.hs-boot
+++ b/libraries/ghc-bignum/src/GHC/Num/Natural.hs-boot
@@ -10,7 +10,7 @@ import GHC.Types
data Natural
= NS !Word#
- | NB !BigNat
+ | NB !BigNat#
naturalToWord# :: Natural -> Word#
naturalFromWord# :: Word# -> Natural