Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Standalone deriving declaration in Template Haskell quotation

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
like image 522
leventov Avatar asked Jan 14 '13 10:01

leventov


1 Answers

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.)

like image 63
Joachim Breitner Avatar answered Nov 04 '22 02:11

Joachim Breitner