Add some GHC.Generics imports so we can find Inl etc where we need to
[ghc-prim.git] / GHC / Types.hs
index 981cbfc..5531a6d 100644 (file)
@@ -3,7 +3,13 @@
 
 module GHC.Types where
 
+import GHC.Prim
+-- We need Inl etc behind the scenes for the type definitions
+import GHC.Generics ()
+
 infixr 5 :
 
 data [] a = [] | a : [a]
 
+data Char = C# Char#
+