From 1a5c3a7d50c4d5692f62791219d3fbf37af133ba Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 5 Mar 2019 10:47:47 -0500 Subject: [PATCH] src/FunctionValues.hs: use explicit Prelude imports. --- src/FunctionValues.hs | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/FunctionValues.hs b/src/FunctionValues.hs index 632a7f4..62b861c 100644 --- a/src/FunctionValues.hs +++ b/src/FunctionValues.hs @@ -17,7 +17,19 @@ module FunctionValues ( value_at ) where -import Prelude hiding ( LT ) +import Prelude( + Bool, + Double, + Eq( (==) ), + Fractional( (/) ), + Int, + Num( (+), (-), (*) ), + Ord ( (>=), (<) ), + Show, + (&&), + and, + not, + return ) import Test.Tasty ( TestTree, testGroup ) import Test.Tasty.HUnit ( Assertion, testCase ) import Test.Tasty.QuickCheck ( Arbitrary( arbitrary ), choose, testProperty ) -- 2.43.2