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