summaryrefslogtreecommitdiff
path: root/testsuite/tests/deriving/should_compile/drv011.hs
blob: bba25f5caedbcec9c59cdeba4ce1d7d505a84a1e (plain)
1
2
3
4
5
6
-- !!! deriving Enum, but not Ord.
module ShouldSucceed where

data ABC = A | B | C deriving Enum

x = [A ..C]