summaryrefslogtreecommitdiff
path: root/testsuite/tests/th/TH_spliceE4.hs
blob: dcda44fbb049cc06bd1ef16964ca23a559f2daac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

module Main where

import Language.Haskell.TH

$( do let h x = x
          foo = [| \x -> $(h [| x |]) |]

      [d| baz = $foo |]
 )

main = print (baz "Hello")