diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2021-04-03 16:58:43 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-04-05 20:46:59 -0400 |
commit | 54880c131db75d7daad1d7acb3cb0f25371a9128 (patch) | |
tree | 2c39a4846f4e4d89f30a077c44aa91e095097c62 | |
parent | 403bf88c568199d8d2a272a041faba96a47a5276 (diff) | |
download | haskell-54880c131db75d7daad1d7acb3cb0f25371a9128.tar.gz |
Bignum: fix invalid hs-boot declaration (#19638)
-rw-r--r-- | libraries/ghc-bignum/src/GHC/Num/Natural.hs-boot | 2 |
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 |