bba25f5caedbcec9c59cdeba4ce1d7d505a84a1e
[ghc-hetmet.git] / ghc / tests / deriving / should_compile / drv011.hs
1 -- !!! deriving Enum, but not Ord.
2 module ShouldSucceed where
3
4 data ABC = A | B | C deriving Enum
5
6 x = [A ..C]