ghc-exactprint-0.5.7.0: tests/examples/ghc86/T4056.hs
{-# LANGUAGE TypeFamilies, RankNTypes, FlexibleContexts #-}
{-# LANGUAGE TemplateHaskell #-}
module T4056 where
import Language.Haskell.TH
astTest :: Q [Dec]
astTest = [d|
class C t where
op :: [t] -> [t]
op = undefined
|]
class D t where
bop :: [t] -> [t]
bop = undefined