summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/tcfail035.hs
blob: 8de67867ddda4e0ee7a91283f0a54dc5ad11d062 (plain)
1
2
3
4
5
6
7
8
9
-- !!! instances with empty where parts: duplicate
--
module ShouldFail where

data NUM = ONE | TWO
instance Num NUM
instance Num NUM
instance Eq NUM
instance Show NUM