summaryrefslogtreecommitdiff
path: root/testsuite/tests/th/TH_spliceE1.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/th/TH_spliceE1.hs')
-rw-r--r--testsuite/tests/th/TH_spliceE1.hs6
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/tests/th/TH_spliceE1.hs b/testsuite/tests/th/TH_spliceE1.hs
new file mode 100644
index 0000000000..bb12cbf277
--- /dev/null
+++ b/testsuite/tests/th/TH_spliceE1.hs
@@ -0,0 +1,6 @@
+module Main where
+
+my_id :: a -> a
+my_id x = $( [| x |] )
+
+main = print (my_id "hello")