Fix warnings in ghc-prim modules
[ghc-prim.git] / GHC / Bool.hs
1
2 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
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