summaryrefslogtreecommitdiff
path: root/testsuite/tests/generics/GenShouldFail0.hs
blob: cc1ef6ff421f19cd5d114971cc7268e3555c2b29 (plain)
1
2
3
4
5
6
7
8
9
10
11
{-# LANGUAGE StandaloneDeriving #-}

module ShouldFail0 where

import GHC.Generics (Generic)

data X = X

deriving instance Generic X

-- Should fail (no XDeriveGeneric)