blob: 9ac8fc6cd1a70909b3155986ae864f4809fa4350 (
plain)
1
2
3
4
5
6
7
8
|
{-# LANGUAGE DeriveGeneric, DatatypeContexts #-}
module CannotDoRep1_1 where
import GHC.Generics
-- We do not support datatypes with context
data (Show a) => Context a = Context a deriving Generic1
|