diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-02-24 20:59:43 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-02-26 15:10:58 -0500 |
commit | 817f93eac4d13f680e8e3e7a25eb403b1864f82e (patch) | |
tree | f7014721e49627f15d76f44a5bf663043e35fafc /testsuite | |
parent | b2b49a0aad353201678970c76d8305a5dcb1bfab (diff) | |
download | haskell-817f93eac4d13f680e8e3e7a25eb403b1864f82e.tar.gz |
Modules: Core (#13009)
Update haddock submodule
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 |