[project @ 1999-01-27 15:01:03 by simonpj]
[ghc-hetmet.git] / ghc / tests / deriving / should_compile / drv009.hs
1 -- !!! deriving Ix on d. type with one constructor
2 module ShouldSucceed where
3
4 import Ix
5
6 data Pair a b = Pair a b deriving (Show, Ord, Eq, Ix)