summaryrefslogtreecommitdiff
path: root/testsuite/tests/th/T15471.hs
blob: 0f0abdf461b43ddacf9ef3ef81bbf9d152b05692 (plain)
1
2
3
4
5
6
7
8
9
10
11
{-# LANGUAGE TemplateHaskell #-}
module T15471 where

import T15471A


qux = $$(test_foo)

bar y = $$(list_foo [|| y ||] )

main = print (qux 5) >> print (bar True)