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