blob: fdf5a57e577d4258315626c93d54c27528c3ae46 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE StandaloneDeriving #-}
module Bug1033 where
import GHC.Generics
data Foo = Foo
-- | This does some generic foos.
deriving instance Generic Foo
|