summaryrefslogtreecommitdiff
path: root/testsuite/tests/th/TH_spliceGuard.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/th/TH_spliceGuard.hs')
-rw-r--r--testsuite/tests/th/TH_spliceGuard.hs13
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/tests/th/TH_spliceGuard.hs b/testsuite/tests/th/TH_spliceGuard.hs
new file mode 100644
index 0000000000..4c220e85b5
--- /dev/null
+++ b/testsuite/tests/th/TH_spliceGuard.hs
@@ -0,0 +1,13 @@
+{-# OPTIONS_GHC -XTemplateHaskell #-}
+
+-- Trac #2017
+
+module ShouldCompile where
+
+ import Language.Haskell.TH
+
+ $(do e <- [d| f a b
+ | a == b = a
+ | otherwise = b |]
+ return e)
+