7

Why Template Haskell ignores standalone deriving declaration in quotation?

{-# LANGUAGE TemplateHaskell, StandaloneDeriving #-}
data Test a = Test a
$([d| deriving instance Show a => Show (Test a); f x = x |])
ghci> :l Test.hs 
[1 of 1] Compiling Main             ( Test.hs, interpreted )
Ok, modules loaded: Main.
ghci> :t f
f :: t -> t
ghci> Test 1 :: Test Int

<interactive>:18:1:
    No instance for (Show (Test Int)) arising from a use of `print'
    Possible fix: add an instance declaration for (Show (Test Int))
    In a stmt of an interactive GHCi command: print it
leventov
  • 14,760
  • 11
  • 69
  • 98

1 Answers1

7

This used to be a shortcoming of the compiler, where the Template Haskell datatype for declarations is not even capable of storing a stand-alone deriving instance (see http://hackage.haskell.org/packages/archive/template-haskell/2.8.0.0/doc/html/Language-Haskell-TH-Syntax.html#t:Dec).

Since 7.10, though, this bug has been fixed. (Thanks to @VladimirStill for pointing this out in a comment below.)

Joachim Breitner
  • 25,395
  • 6
  • 78
  • 139
  • True, I noticed the absence of standalone deriving costructor in the library. Was hoping to get it through quotations. – leventov Jan 14 '13 at 12:38
  • I suspect this is because standalone deriving happens in an earlier compile phase than Template Haskell. In the renamer instead of the typechecker, or something. – Ben Millwood Jan 14 '13 at 12:51