packages feed

ghc-exactprint-0.5.0.0: tests/examples/ghc8/T5001b.hs

{-# LANGUAGE DefaultSignatures #-}
module T5001b where

class GEnum a where
     genum :: [a]
     default genum :: [a]
     genum = undefined

instance GEnum Int where
     {-# INLINE genum #-}