From 1bf363052778fc39335ea3701a3229572358c51e Mon Sep 17 00:00:00 2001 From: "simonpj@microsoft.com" Date: Tue, 3 Oct 2006 13:38:45 +0000 Subject: [PATCH] Trim imports --- compiler/deSugar/DsUtils.lhs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/compiler/deSugar/DsUtils.lhs b/compiler/deSugar/DsUtils.lhs index 8c5a743..e2334f3 100644 --- a/compiler/deSugar/DsUtils.lhs +++ b/compiler/deSugar/DsUtils.lhs @@ -51,12 +51,11 @@ import Id ( idType, Id, mkWildId, mkTemplateLocals, mkSysLocal ) import Var ( Var ) import Name ( Name ) import Literal ( Literal(..), mkStringLit, inIntRange, tARGET_MAX_INT ) -import TyCon ( isNewTyCon, tyConDataCons, tyConArity ) -import DataCon ( DataCon, dataConSourceArity, dataConTyCon, dataConTag, dataConRepArgTys ) +import TyCon ( isNewTyCon, tyConDataCons ) +import DataCon ( DataCon, dataConSourceArity, dataConTyCon, dataConTag ) import Type ( mkFunTy, isUnLiftedType, Type, splitTyConApp, mkTyVarTy, splitNewTyConApp ) -import Coercion ( Coercion, mkUnsafeCoercion ) -import TcType ( tcEqType ) +import Coercion ( mkUnsafeCoercion ) import TysPrim ( intPrimTy ) import TysWiredIn ( nilDataCon, consDataCon, tupleCon, mkTupleTy, -- 1.7.10.4