Avoid using deprecated flags
[ghc-prim.git] / GHC / Generics.hs
1
2 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
3
4 module GHC.Generics where
5
6 default ()
7
8 data Unit = Unit
9 #ifndef __HADDOCK__
10 data (:+:) a b = Inl a | Inr b
11 data (:*:) a b = a :*: b
12 #endif
13