From 94fff171ed26c83f7b87a43db45a1d39539c51fc Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Tue, 5 Aug 2008 20:30:12 +0000 Subject: [PATCH] Move the Char datatype into ghc-prim --- GHC/Types.hs | 4 ++++ 1 file changed, 4 insertions(+) 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# + -- 1.7.10.4