summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/simplCore
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2011-02-05 20:50:14 +0000
committerIan Lynagh <igloo@earth.li>2011-02-05 20:50:14 +0000
commit965ad7d47d34cc6a05ea05077f852b11e049a91f (patch)
tree4b3de713f972b256869335b552cc9f4d64a77013 /testsuite/tests/ghc-regress/simplCore
parentf4738c93f695c9fb64a29506f4371177a9bd3626 (diff)
downloadhaskell-965ad7d47d34cc6a05ea05077f852b11e049a91f.tar.gz
Remove the haskell98 dependency from more tests
Diffstat (limited to 'testsuite/tests/ghc-regress/simplCore')
-rw-r--r--testsuite/tests/ghc-regress/simplCore/prog002/Simpl009Help.hs2
-rw-r--r--testsuite/tests/ghc-regress/simplCore/prog002/simpl009.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/ghc-regress/simplCore/prog002/Simpl009Help.hs b/testsuite/tests/ghc-regress/simplCore/prog002/Simpl009Help.hs
index 931b992364..ac75943016 100644
--- a/testsuite/tests/ghc-regress/simplCore/prog002/Simpl009Help.hs
+++ b/testsuite/tests/ghc-regress/simplCore/prog002/Simpl009Help.hs
@@ -4,7 +4,7 @@
module Simpl009Help where
-import Monad
+import Control.Monad
newtype Parser s a
= Parser (forall res . (a -> [String] -> P s res) -> [String] -> P s res)
diff --git a/testsuite/tests/ghc-regress/simplCore/prog002/simpl009.hs b/testsuite/tests/ghc-regress/simplCore/prog002/simpl009.hs
index 33b6072781..bac2bafbdb 100644
--- a/testsuite/tests/ghc-regress/simplCore/prog002/simpl009.hs
+++ b/testsuite/tests/ghc-regress/simplCore/prog002/simpl009.hs
@@ -9,7 +9,7 @@
module FormParse where
-import Monad
+import Control.Monad
import Simpl009Help
identifier :: Parser Char Char