BIN_DIST_INST_SUBDIR Needs to be defined in config.mk so ./Makefile can see it
[ghc-hetmet.git] / compiler / basicTypes / DataCon.lhs-boot
1 \begin{code}
2 module DataCon where
3 import Name( Name )
4
5 data DataCon
6 dataConName      :: DataCon -> Name
7 isVanillaDataCon :: DataCon -> Bool
8 \end{code}