fcf-containers-0.8.2: test/doctest.hs
{-# LANGUAGE CPP #-}
import Test.DocTest
#if __GLASGOW_HASKELL__ >= 902
exts :: [String]
exts =
[ "-XDataKinds"
, "-XKindSignatures"
, "-XTypeFamilies"
, "-XTypeOperators"
, "-XUndecidableInstances"
]
main :: IO ()
main = doctest $ exts ++ ["src"]
#else
main :: IO ()
main = pure ()
#endif