summaryrefslogtreecommitdiff
path: root/testsuite/tests/quasiquotation/qq002/qq002.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/quasiquotation/qq002/qq002.hs')
-rw-r--r--testsuite/tests/quasiquotation/qq002/qq002.hs9
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/tests/quasiquotation/qq002/qq002.hs b/testsuite/tests/quasiquotation/qq002/qq002.hs
new file mode 100644
index 0000000000..a9ac995e5a
--- /dev/null
+++ b/testsuite/tests/quasiquotation/qq002/qq002.hs
@@ -0,0 +1,9 @@
+{-# LANGUAGE QuasiQuotes #-}
+module Main where
+
+parse = undefined
+
+main :: IO ()
+main = case () of
+ [parse||] -> return ()
+ _ -> return ()