10e889e9292fe1778eb544ae2e2c1f1242c05a9f
[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)