Give the inferred type when warning of a missing type-signature (Trac #1256)
[ghc-hetmet.git] / compiler / codeGen / CgBindery.lhs-boot
1 \begin{code}
2 module CgBindery where
3 import VarEnv( IdEnv )
4
5 data CgIdInfo
6 data VolatileLoc
7 data StableLoc
8 type CgBindings = IdEnv CgIdInfo
9
10 nukeVolatileBinds :: CgBindings -> CgBindings
11 \end{code}