diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/tasty.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/tasty.hs b/tests/tasty.hs index 64786e6..32bdd8d 100644 --- a/tests/tasty.hs +++ b/tests/tasty.hs @@ -1,6 +1,11 @@ +{-# LANGUAGE CPP #-} {-# LANGUAGE OverloadedStrings #-} module Main where +#if !MIN_VERSION_base(4,8,0) +import Control.Applicative ((<$>), (<*>)) +#endif + import Data.Attoparsec.Text (parseOnly) import qualified Data.Text.IO as Text import Test.Tasty (defaultMain) |
