summaryrefslogtreecommitdiff
path: root/testsuite/tests/codeGen
diff options
context:
space:
mode:
authorSimon Peyton Jones <simonpj@microsoft.com>2013-02-14 14:46:13 +0000
committerSimon Peyton Jones <simonpj@microsoft.com>2013-02-14 14:46:13 +0000
commitb3bf41f3d1eaa618cee9746a948c7b1c318d15c4 (patch)
tree3bb8096502f00d5bef47a5d96a8e48465843bd6d /testsuite/tests/codeGen
parent00a3d583c3567dfdd8cf4d2d194487175335c52d (diff)
downloadhaskell-b3bf41f3d1eaa618cee9746a948c7b1c318d15c4.tar.gz
Error message wibbles when adding overloaded lists
Diffstat (limited to 'testsuite/tests/codeGen')
-rw-r--r--testsuite/tests/codeGen/should_run/cgrun064.hs2
-rw-r--r--testsuite/tests/codeGen/should_run/cgrun068.hs2
-rw-r--r--testsuite/tests/codeGen/should_run/cgrun070.hs2
3 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/tests/codeGen/should_run/cgrun064.hs b/testsuite/tests/codeGen/should_run/cgrun064.hs
index aa037e8782..24544c4382 100644
--- a/testsuite/tests/codeGen/should_run/cgrun064.hs
+++ b/testsuite/tests/codeGen/should_run/cgrun064.hs
@@ -5,7 +5,7 @@
module Main ( main ) where
-import GHC.Exts
+import GHC.Exts hiding (IsList(..))
import GHC.Prim
import GHC.ST
diff --git a/testsuite/tests/codeGen/should_run/cgrun068.hs b/testsuite/tests/codeGen/should_run/cgrun068.hs
index 9d9a0f954f..69a8b279f8 100644
--- a/testsuite/tests/codeGen/should_run/cgrun068.hs
+++ b/testsuite/tests/codeGen/should_run/cgrun068.hs
@@ -33,7 +33,7 @@ import Control.Exception (assert)
import Control.Monad
import Control.Monad.Trans.State.Strict
import Control.Monad.Trans.Class
-import GHC.Exts
+import GHC.Exts hiding (IsList(..))
import GHC.ST hiding (liftST)
import Prelude hiding (length, read)
import qualified Prelude as P
diff --git a/testsuite/tests/codeGen/should_run/cgrun070.hs b/testsuite/tests/codeGen/should_run/cgrun070.hs
index 1f6b5622ba..3187af6f67 100644
--- a/testsuite/tests/codeGen/should_run/cgrun070.hs
+++ b/testsuite/tests/codeGen/should_run/cgrun070.hs
@@ -6,7 +6,7 @@
module Main ( main ) where
import GHC.Word
-import GHC.Exts
+import GHC.Exts hiding (IsList(..))
import GHC.Prim
import GHC.ST