packages feed

ghc-exactprint-0.5.7.0: tests/examples/ghc86/T4170.hs

{-# LANGUAGE TemplateHaskell #-}
module T4170 where

import Language.Haskell.TH

class LOL a

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

instance LOL Int