packages feed

ghc-exactprint-0.5.3.1: tests/examples/ghc80/T5001b.hs

{-# LANGUAGE DefaultSignatures #-}
module T5001b where

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

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