ghc-exactprint-1.9.0.0: tests/examples/pre-ghc910/T5001b.hs
{-# LANGUAGE DefaultSignatures #-}
module T5001b where
class GEnum a where
genum :: [a]
default genum :: [a]
genum = undefined
instance GEnum Int where
{-# INLINE genum #-}