blob: 83b7a72bef9826ca44c9f1563e93a7110d485b99 (
plain)
1
2
3
4
5
6
7
8
|
{-# OPTIONS_GHC -Werror -fwarn-unused-binds #-}
-- Test #3221: the constructors are used by the deriving
-- clause, even though they are not exported
module T3221( Foo ) where
data Foo = Bar | Baz deriving (Show,Read)
|