Move the register-inplace special-case stuff into the ghc-prim package
[ghc-prim.git] / GHC / Bool.hs
1
2 {-# OPTIONS_GHC -fno-implicit-prelude #-}
3
4 module GHC.Bool where
5
6 -- We need Inl etc behind the scenes for the Bool definition
7 import GHC.Generics
8
9 default ()
10
11 data Bool = False | True