packages feed

ghc-exactprint-0.5.1.0: tests/examples/ghc8/T4170.hs

{-# LANGUAGE TemplateHaskellQuotes #-}
module T4170 where

import Language.Haskell.TH

class LOL a

lol :: Q [Dec]
lol = [d|
    instance LOL Int
    |]

instance LOL Int