From d3bd68978476487591fc60f7feb7cfb36b8fc3a3 Mon Sep 17 00:00:00 2001 From: Sylvain Henry Date: Mon, 6 Jul 2020 15:08:31 +0200 Subject: BigNum: rename BigNat types Before this patch BigNat names were confusing because we had: * GHC.Num.BigNat.BigNat: unlifted type used everywhere else * GHC.Num.BigNat.BigNatW: lifted type only used to share static constants * GHC.Natural.BigNat: lifted type only used for backward compatibility After this patch we have: * GHC.Num.BigNat.BigNat#: unlifted type * GHC.Num.BigNat.BigNat: lifted type (reexported from GHC.Natural) Thanks to @RyanGlScott for spotting this. --- testsuite/tests/numeric/should_run/T18359.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testsuite/tests/numeric') diff --git a/testsuite/tests/numeric/should_run/T18359.hs b/testsuite/tests/numeric/should_run/T18359.hs index 16deba75dd..fced8c08d6 100644 --- a/testsuite/tests/numeric/should_run/T18359.hs +++ b/testsuite/tests/numeric/should_run/T18359.hs @@ -15,4 +15,4 @@ foo2 = case raiseDivZero of I# _ -> print "NOPE" foo :: IO () -foo = print (W# (bigNatRemWord# (bigNatOne void#) 0##)) +foo = print (W# (bigNatRemWord# (bigNatOne# void#) 0##)) -- cgit v1.2.1