summaryrefslogtreecommitdiff
path: root/compiler/typecheck/TcType.hs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/typecheck/TcType.hs')
-rw-r--r--compiler/typecheck/TcType.hs14
1 files changed, 7 insertions, 7 deletions
diff --git a/compiler/typecheck/TcType.hs b/compiler/typecheck/TcType.hs
index 8ea61cfa36..bc575cef66 100644
--- a/compiler/typecheck/TcType.hs
+++ b/compiler/typecheck/TcType.hs
@@ -198,9 +198,9 @@ import GHC.Core.TyCo.Subst ( mkTvSubst, substTyWithCoVars )
import GHC.Core.TyCo.FVs
import GHC.Core.TyCo.Ppr
import GHC.Core.Class
-import Var
-import ForeignCall
-import VarSet
+import GHC.Types.Var
+import GHC.Types.ForeignCall
+import GHC.Types.Var.Set
import GHC.Core.Coercion
import GHC.Core.Type as Type
import GHC.Core.Predicate
@@ -210,15 +210,15 @@ import GHC.Core.TyCon
-- others:
import GHC.Driver.Session
import GHC.Core.FVs
-import Name -- hiding (varName)
+import GHC.Types.Name as Name
-- We use this to make dictionaries for type literals.
-- Perhaps there's a better way to do this?
-import NameSet
-import VarEnv
+import GHC.Types.Name.Set
+import GHC.Types.Var.Env
import PrelNames
import TysWiredIn( coercibleClass, eqClass, heqClass, unitTyCon, unitTyConKey
, listTyCon, constraintKind )
-import BasicTypes
+import GHC.Types.Basic
import Util
import Maybes
import ListSetOps ( getNth, findDupsEq )