summaryrefslogtreecommitdiff
path: root/testsuite/tests/quasiquotation/T4150.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/quasiquotation/T4150.hs')
-rw-r--r--testsuite/tests/quasiquotation/T4150.hs16
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/tests/quasiquotation/T4150.hs b/testsuite/tests/quasiquotation/T4150.hs
new file mode 100644
index 0000000000..3bf7cddc49
--- /dev/null
+++ b/testsuite/tests/quasiquotation/T4150.hs
@@ -0,0 +1,16 @@
+{-# LANGUAGE CPP, QuasiQuotes #-}
+
+module Main (main) where
+
+import T4150A
+
+myHtmlsTemplate = [multiLineStr|
+#include "T4150template.txt"
+|]
+
+somethingElse :: NoSuchType
+somethingElse = undefined
+
+main :: IO ()
+main = print myHtmlsTemplate
+