blob: 50527da85c2fa9eb242efec2895a9c5178356fa2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module Main where
import Language.Haskell.TH
-- The recover successfully find that 'ola' is not in scope
-- and use '1' instead
y = $(recover (return (LitE (IntegerL 1)))
(reify (mkName ("ola")) >> return (LitE (IntegerL 2))))
main = print y
|