Help haddock find ghc-prim's types by explicitly exporting them
[ghc-prim.git] / GHC / Bool.hs
1
2 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
3
4 module GHC.Bool (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