blob: f1200208f88627878b4a6aa3c47d640e72a4232f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{-# LANGUAGE Haskell2010 #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DeriveFunctor #-}
{-# LANGUAGE DefaultSignatures #-}
{-# LANGUAGE StandaloneDeriving #-}
{-# LANGUAGE UndecidableInstances #-}
-- DeriveAnyClass not enabled
module T5462No1 where
import GHC.Generics hiding (C, C1, D)
import GFunctor
class C1 a where
c1 :: a -> Int
class C2 a where
c2 :: a -> Int
c2 _ = 0
newtype F a = F1 [a]
deriving (Show, Eq, Generic, Generic1, GFunctor)
data G = G1 deriving (C1)
data H = H1 deriving (C2)
|