diff --git a/tests/MemoizationTests.hs b/tests/MemoizationTests.hs index 25cc940..5489ba3 100644 --- a/tests/MemoizationTests.hs +++ b/tests/MemoizationTests.hs @@ -1,5 +1,9 @@ +{-# LANGUAGE CPP #-} module MemoizationTests (tests) where +#if __GLASGOW_HASKELL__ < 710 +import Control.Applicative +#endif import Data.IORef import Test.HUnit