diff options
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/tests/callarity/unittest/CallArity1.hs | 10 | ||||
-rw-r--r-- | testsuite/tests/typecheck/should_compile/T3409.hs | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/testsuite/tests/callarity/unittest/CallArity1.hs b/testsuite/tests/callarity/unittest/CallArity1.hs index 8a1cacc4e0..cbc07dbecd 100644 --- a/testsuite/tests/callarity/unittest/CallArity1.hs +++ b/testsuite/tests/callarity/unittest/CallArity1.hs @@ -1,9 +1,9 @@ {-# LANGUAGE TupleSections #-} -import CoreSyn -import CoreUtils +import GHC.Core +import GHC.Core.Utils import Id import Type -import MkCore +import GHC.Core.Make import CallArity (callArityRHS) import MkId import SysTools @@ -17,10 +17,10 @@ import Control.Monad import Control.Monad.IO.Class import System.Environment( getArgs ) import VarSet -import PprCore +import GHC.Core.Ppr import Unique import UniqSet -import CoreLint +import GHC.Core.Lint import FastString -- Build IDs. use mkTemplateLocal, more predictable than proper uniques diff --git a/testsuite/tests/typecheck/should_compile/T3409.hs b/testsuite/tests/typecheck/should_compile/T3409.hs index b584fe1f1f..dd6c935a1d 100644 --- a/testsuite/tests/typecheck/should_compile/T3409.hs +++ b/testsuite/tests/typecheck/should_compile/T3409.hs @@ -5,7 +5,7 @@ -- because of a type synonym that discards one of its arguments -- -- See Note [Existential variables and silly type synonyms] --- in CoreUtils +-- in GHC.Core.Utils -- In GHC 6.10, both tests below (independently) give Lint errors |