Follow GHC.Types changes
[ghc-prim.git] / GHC / Types.hs-boot
1 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
2
3 module GHC.Types where
4
5 import GHC.Prim
6
7
8 infixr 5 :
9
10 data [] a = [] | a : [a]
11
12 data Char = C# Char#
13
14 data Int = I# Int#
15
16 data Bool = False | True
17