diff options
Diffstat (limited to 'testsuite/tests/quasiquotation/qq001/qq001.hs')
-rw-r--r-- | testsuite/tests/quasiquotation/qq001/qq001.hs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/tests/quasiquotation/qq001/qq001.hs b/testsuite/tests/quasiquotation/qq001/qq001.hs new file mode 100644 index 0000000000..652c8cf874 --- /dev/null +++ b/testsuite/tests/quasiquotation/qq001/qq001.hs @@ -0,0 +1,7 @@ +{-# LANGUAGE QuasiQuotes #-} +module Main where + +parse = undefined + +main :: IO () +main = print $ [parse||] |