blob: 1e90a94fc44c79415f928cba5f9e697597f324a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{-# LANGUAGE Haskell2010 #-}
{-# LANGUAGE StandaloneDeriving #-}
module ShouldFail0 where
import GHC.Generics (Generic)
data X = X
deriving instance Generic X
-- Should fail (no XDeriveGeneric)
|