summaryrefslogtreecommitdiff
path: root/testsuite/tests/quotes/TH_nested_splice.hs
blob: 811aa5e4265da752c45c477dc419f691684fcc38 (plain)
1
2
3
4
5
6
7
8
9
10
11
{-# LANGUAGE TemplateHaskellQuotes #-}
{-# LANGUAGE NoMonomorphismRestriction #-}
module TH_nested_splice where

a = [| 5 |]

b = [| $(a) |]

c = [|| 5 ||]

d = [|| $$(c) ||]