packages feed

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

{-# LANGUAGE FunctionalDependencies #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE TemplateHaskell #-}

module T10819 where

import T10819_Lib

import Language.Haskell.TH.Syntax

class C a b | b -> a where
  f :: b -> a

data D = X

instance C Int D where
  f X = 2

$(doSomeTH "N" (mkName "D")
    [DerivClause Nothing [ConT (mkName "C") `AppT` ConT (mkName "Int")]])

thing :: N
thing = N X

thing1 :: Int
thing1 = f thing