ghc-exactprint-0.5.3.1: tests/examples/ghc80/T4056.hs
{-# LANGUAGE TypeFamilies, RankNTypes, FlexibleContexts #-}
{-# LANGUAGE TemplateHaskellQuotes #-}
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