Move the Char datatype into ghc-prim
[ghc-prim.git] / GHC / Types.hs
index 981cbfc..e43e376 100644 (file)
@@ -3,7 +3,11 @@
 
 module GHC.Types where
 
+import GHC.Prim
+
 infixr 5 :
 
 data [] a = [] | a : [a]
 
+data Char = C# Char#
+