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