Update source-repository in the .cabal file to point to the git repo
[ghc-prim.git] / GHC / Generics.hs
1 {-# OPTIONS_GHC -XNoImplicitPrelude -XTypeOperators #-}
2
3 module GHC.Generics where
4
5 default ()
6
7 data Unit = Unit
8 #ifndef __HADDOCK__
9 data (:+:) a b = Inl a | Inr b
10 data (:*:) a b = a :*: b
11 #endif
12