summaryrefslogtreecommitdiff
path: root/compiler/basicTypes/DataCon.lhs-boot
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/basicTypes/DataCon.lhs-boot')
-rw-r--r--compiler/basicTypes/DataCon.lhs-boot8
1 files changed, 8 insertions, 0 deletions
diff --git a/compiler/basicTypes/DataCon.lhs-boot b/compiler/basicTypes/DataCon.lhs-boot
new file mode 100644
index 0000000000..c5e05c9ecd
--- /dev/null
+++ b/compiler/basicTypes/DataCon.lhs-boot
@@ -0,0 +1,8 @@
+\begin{code}
+module DataCon where
+import Name( Name )
+
+data DataCon
+dataConName :: DataCon -> Name
+isVanillaDataCon :: DataCon -> Bool
+\end{code}