Move the Char datatype into ghc-prim
[ghc-prim.git] / GHC / Types.hs
1
2 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
3
4 module GHC.Types where
5
6 import GHC.Prim
7
8 infixr 5 :
9
10 data [] a = [] | a : [a]
11
12 data Char = C# Char#
13