summaryrefslogtreecommitdiff
path: root/testsuite/tests/deriving/should_fail/T3834.hs
blob: fa6df580e89d641a5bd94d63901030c85b0b3525 (plain)
1
2
3
4
5
6
7
8
9
10
{-# LANGUAGE Haskell2010 #-}

{-# LANGUAGE StandaloneDeriving #-}

class C a
instance C Int

newtype T = T Int
deriving instance C T