summaryrefslogtreecommitdiff
path: root/compiler/iface/TcIface.lhs-boot
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/iface/TcIface.lhs-boot')
-rw-r--r--compiler/iface/TcIface.lhs-boot13
1 files changed, 13 insertions, 0 deletions
diff --git a/compiler/iface/TcIface.lhs-boot b/compiler/iface/TcIface.lhs-boot
new file mode 100644
index 0000000000..25191fcaae
--- /dev/null
+++ b/compiler/iface/TcIface.lhs-boot
@@ -0,0 +1,13 @@
+\begin{code}
+module TcIface where
+import IfaceSyn ( IfaceDecl, IfaceInst, IfaceRule )
+import TypeRep ( TyThing )
+import TcRnTypes ( IfL )
+import InstEnv ( Instance )
+import CoreSyn ( CoreRule )
+
+tcIfaceDecl :: IfaceDecl -> IfL TyThing
+tcIfaceInst :: IfaceInst -> IfL Instance
+tcIfaceRule :: IfaceRule -> IfL CoreRule
+\end{code}
+