Update GHC.Generics to new generic programming library
[ghc-prim.git] / GHC / Types.hs-boot
diff --git a/GHC/Types.hs-boot b/GHC/Types.hs-boot
new file mode 100644 (file)
index 0000000..25f88c4
--- /dev/null
@@ -0,0 +1,15 @@
+{-# OPTIONS_GHC -XNoImplicitPrelude #-}
+
+module GHC.Types where
+
+import GHC.Prim
+
+
+infixr 5 :
+
+data [] a = [] | a : [a]
+
+data Char = C# Char#
+
+data Int = I# Int#
+