summaryrefslogtreecommitdiff
path: root/testsuite/tests/rename/should_fail/T5001b.hs
blob: 3b01646df97f57bef0ad2866b973363b3de0771e (plain)
1
2
3
4
5
6
7
8
9
10
{-# LANGUAGE DefaultSignatures #-}
module T5001b where

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

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