From 6cc5300fea6115c324a0f16d33d8717200076d26 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 4 Mar 2019 23:14:19 -0500 Subject: [PATCH] src/Cardinal.hs: use explicit Prelude imports to silence a dumb warning. --- src/Cardinal.hs | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/Cardinal.hs b/src/Cardinal.hs index 9432d7e..6017fa1 100644 --- a/src/Cardinal.hs +++ b/src/Cardinal.hs @@ -23,7 +23,18 @@ module Cardinal ( where import Control.Monad (liftM, liftM2) -import Prelude hiding (LT) +import Prelude ( + (.), + Bool, + Double, + Eq( (==), (/=) ), + Fractional( (/), fromRational, recip ), + Num( (+), (-), (*), abs, negate, signum, fromInteger ), + Show, + elem, + fromIntegral, + length, + return ) import Test.Tasty ( TestTree, testGroup ) import Test.Tasty.HUnit ( Assertion, assertEqual, testCase ) import Test.Tasty.QuickCheck ( -- 2.43.2