summaryrefslogtreecommitdiff
path: root/ghc/compiler
diff options
context:
space:
mode:
authorsimonm <unknown>1997-11-13 10:52:43 +0000
committersimonm <unknown>1997-11-13 10:52:43 +0000
commitfcfeeba01f3f91a9aa8848de83b646b07ca755c2 (patch)
tree309d9f18fb7063209dfdf983635704166534ae6e /ghc/compiler
parent619484b058650993ff95f95b0d8333392c0ee73a (diff)
downloadhaskell-fcfeeba01f3f91a9aa8848de83b646b07ca755c2.tar.gz
[project @ 1997-11-13 10:52:43 by simonm]
add missing import of Id(..).
Diffstat (limited to 'ghc/compiler')
-rw-r--r--ghc/compiler/deSugar/DsCCall.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/compiler/deSugar/DsCCall.lhs b/ghc/compiler/deSugar/DsCCall.lhs
index 5519ea4621..1cae7d022b 100644
--- a/ghc/compiler/deSugar/DsCCall.lhs
+++ b/ghc/compiler/deSugar/DsCCall.lhs
@@ -17,7 +17,7 @@ import DsMonad
import DsUtils
import CoreUtils ( coreExprType )
-import Id ( dataConArgTys, dataConTyCon, idType )
+import Id ( Id(..), dataConArgTys, dataConTyCon, idType )
import Maybes ( maybeToBool )
import Outputable ( PprStyle(..), Outputable(..) )
import PprType ( GenType{-instances-} )