From: Ian Lynagh Date: Tue, 5 Aug 2008 20:30:12 +0000 (+0000) Subject: Move the Char datatype into ghc-prim X-Git-Tag: 6_10_branch_has_been_forked~5 X-Git-Url: http://git.megacz.com/?p=ghc-prim.git;a=commitdiff_plain;h=94fff171ed26c83f7b87a43db45a1d39539c51fc Move the Char datatype into ghc-prim --- diff --git a/GHC/Types.hs b/GHC/Types.hs index 981cbfc..e43e376 100644 --- a/GHC/Types.hs +++ b/GHC/Types.hs @@ -3,7 +3,11 @@ module GHC.Types where +import GHC.Prim + infixr 5 : data [] a = [] | a : [a] +data Char = C# Char# +