summaryrefslogtreecommitdiff
path: root/testsuite/tests/th/T9084.hs
blob: 6b1fe0dd26b3052374142615324ef79fa0df86da (plain)
1
2
3
4
5
6
7
8
9
10
{-# LANGUAGE TemplateHaskell #-}

module T9084 where

$([d|
   class C a where
     meth :: a -> a
     meth = undefined -- give a (silly) default
     {-# MINIMAL meth #-}
   |])