summaryrefslogtreecommitdiff
path: root/testsuite/tests/simplCore/should_compile/T4918a.hs
blob: 5db7cb00b8a2f5e34fffcf18ff56bc8d8fa128c0 (plain)
1
2
3
4
5
6
7
8
module T4918a where

class MyEnum a where 
 myEnum :: [a]

instance MyEnum () where 
 myEnum = [()]