Initial commit; code copied from the base package
[ghc-prim.git] / GHC / Generics.hs
1
2 {-# OPTIONS_GHC -fno-implicit-prelude #-}
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