e43e3761b9614ba794e2a58d6efca662ec3f3da9
[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