[project @ 2001-08-22 11:45:06 by sewardj]
[ghc-hetmet.git] / ghc / tests / deriving / should_compile / drv008.hs
1 -- !!! deriving Ix on d. type with nullary constructors
2 module ShouldSucceed where
3
4 import Ix
5
6 data AD = A | B | C | D deriving (Show, Ord, Eq, Ix)
7