summaryrefslogtreecommitdiff
path: root/testsuite/tests/deriving/should_fail/T10684.hs
blob: ae532a15bf5c85b16f2ec836ad5a201c5376ef36 (plain)
1
2
3
4
5
{-# LANGUAGE Haskell2010 #-}
module A where
import GHC.Generics
data A = A deriving (Show, Generic)
data B = B A deriving (Show)