[project @ 1997-09-05 14:11:05 by simonm]
[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