ghc-exactprint-0.5.1.0: tests/examples/ghc8/T4169.hs
{-# LANGUAGE TemplateHaskellQuotes #-}
-- Crashed GHC 6.12
module T4165 where
import Language.Haskell.TH
class Numeric a where
fromIntegerNum :: a
fromIntegerNum = undefined
ast :: Q [Dec]
ast = [d|
instance Numeric Int
|]