packages feed

lhc-0.8: lib/ghc-prim/GHC/Generics.hs

{-# OPTIONS_GHC -XNoImplicitPrelude #-}

module GHC.Generics where

default ()

data Unit = Unit
#ifndef __HADDOCK__
data (:+:) a b = Inl a | Inr b
data (:*:) a b = a :*: b
#endif