summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/tcfail023.hs
blob: 74bcaf3a4b172748cf66f3ce9bbfdbb77f67e159 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module ShouldFail where

-- !!! Duplicate instances

data B = C

class A a where
 op :: a -> Bool

instance A B where
 op C = True

instance A B where
 op C = True