blob: af62a747d471f340d14de58ff99621bfadb4299a (
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
|
{-# LANGUAGE Haskell2010 #-}
{-# OPTIONS_GHC -XDeriveDataTypeable #-}
-- #1935
-- See Note [Superclasses of derived instance] in GHC.Tc.Deriv
{-# OPTIONS -fno-warn-redundant-constraints #-}
module Foo where
import Data.Data
data Foo a = Foo
deriving (Data, Typeable)
data T a = MkT (S a) deriving( Ord )
instance Num a => Eq (T a)
data S a = S
instance Eq (S a)
instance Ord (S a)
|