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

module ShouldFail1_0 where

import GHC.Generics (Generic1)

data X a = X

deriving instance Generic1 X

-- Should fail (no XDeriveGeneric)