derive-storable-plugin-0.2.0.0: test/ids/ParametrisedSpec/Types.hs
{-#LANGUAGE DeriveGeneric #-}
module Types where
import GHC.Generics
data Flat a b = Flat a b deriving (Generic)
data Nested a b = Nested a (Flat a b) deriving (Generic)
data Nested2 a b = Nested2 b (Nested a b) deriving (Generic)