diff --git a/ghc/compiler/typecheck/TcEnv.lhs b/ghc/compiler/typecheck/TcEnv.lhs index 7ec765da46a4b887040b4cb79e31f00b20929a8e..3327ece393a25b327b615a0f614cd1e63359f786 100644 --- a/ghc/compiler/typecheck/TcEnv.lhs +++ b/ghc/compiler/typecheck/TcEnv.lhs @@ -24,7 +24,11 @@ module TcEnv( IMP_Ubiq() +#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ <= 201 IMPORT_DELOOPER(TcMLoop) -- for paranoia checking +#else +import {-# SOURCE #-} TcType +#endif import HsTypes ( HsTyVar(..) ) import Id ( SYN_IE(Id), GenId, idType, mkUserLocal, mkUserId, replaceIdInfo, getIdInfo )