packages feed

ghc-exactprint-1.9.0.0: tests/examples/pre-ghc910/T4170.1.hs

{-# LANGUAGE TemplateHaskellQuotes #-}
module T4170 where

import Language.Haskell.TH

class LOL a

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

instance LOL Int