summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Henry <sylvain@haskus.fr>2021-04-03 16:58:43 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-04-05 20:46:59 -0400
commit54880c131db75d7daad1d7acb3cb0f25371a9128 (patch)
tree2c39a4846f4e4d89f30a077c44aa91e095097c62
parent403bf88c568199d8d2a272a041faba96a47a5276 (diff)
downloadhaskell-54880c131db75d7daad1d7acb3cb0f25371a9128.tar.gz
Bignum: fix invalid hs-boot declaration (#19638)
-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