2013-09-20 12:10:31 +00:00
|
|
|
module Main where
|
|
|
|
|
|
|
|
import Test.DocTest
|
|
|
|
|
|
|
|
main :: IO ()
|
|
|
|
main = doctest [
|
|
|
|
"-package"
|
|
|
|
, "ghc"
|
2015-03-04 20:48:21 +00:00
|
|
|
, "-XConstraintKinds", "-XFlexibleContexts", "-XScopedTypeVariables", "-XRecordWildCards", "-XNamedFieldPuns"
|
2014-04-24 14:11:55 +00:00
|
|
|
, "-idist/build/autogen/"
|
|
|
|
, "-optP-include"
|
|
|
|
, "-optPdist/build/autogen/cabal_macros.h"
|
2013-09-20 12:10:31 +00:00
|
|
|
, "Language/Haskell/GhcMod.hs"
|
|
|
|
]
|