blob: a229c90ed74d91aa5f04f360d8137107d79e185e (
plain)
1
2
3
4
5
6
7
8
9
|
{-# LANGUAGE DeriveGeneric #-}
module GenCannotDoRep1_7 where
import GHC.Generics
-- We do not support occurrences of the type variable except as the last
-- argument
data I a = I (a, Int) deriving Generic1
|