diff options
Diffstat (limited to 'ghc/compiler/deSugar/DsExpr.lhs')
-rw-r--r-- | ghc/compiler/deSugar/DsExpr.lhs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ghc/compiler/deSugar/DsExpr.lhs b/ghc/compiler/deSugar/DsExpr.lhs index 835c9f9d9a..8d059a2671 100644 --- a/ghc/compiler/deSugar/DsExpr.lhs +++ b/ghc/compiler/deSugar/DsExpr.lhs @@ -42,15 +42,15 @@ import MagicUFs ( MagicUnfoldingFun ) import Name ( Name{--O only-} ) import PprStyle ( PprStyle(..) ) import PprType ( GenType ) -import PrelInfo ( mkTupleTy, unitTy, nilDataCon, consDataCon, - charDataCon, charTy, rEC_CON_ERROR_ID, - rEC_UPD_ERROR_ID - ) +import PrelVals ( rEC_CON_ERROR_ID, rEC_UPD_ERROR_ID ) import Pretty ( ppShow, ppBesides, ppPStr, ppStr ) import TyCon ( isDataTyCon, isNewTyCon ) import Type ( splitSigmaTy, splitFunTy, typePrimRep, getAppDataTyConExpandingDicts, getAppTyCon, applyTy ) +import TysWiredIn ( mkTupleTy, unitTy, nilDataCon, consDataCon, + charDataCon, charTy + ) import TyVar ( nullTyVarEnv, addOneToTyVarEnv, GenTyVar{-instance Eq-} ) import Usage ( UVar(..) ) import Util ( zipEqual, pprError, panic, assertPanic ) |