summaryrefslogtreecommitdiff
path: root/testsuite/tests/th/T10267a.hs
diff options
context:
space:
mode:
authorJan Stolarek <jan.stolarek@p.lodz.pl>2015-09-08 19:19:44 +0200
committerJan Stolarek <jan.stolarek@p.lodz.pl>2015-10-16 20:15:44 +0200
commit75492e7467ff962f2f2e29e5c8b2c588c94ae8a7 (patch)
tree8ed0f57f12dbb5c73b0f0d1d1994aef5dd89cea0 /testsuite/tests/th/T10267a.hs
parentb1884b0e62f62e3c0859515c4137124ab0c9560e (diff)
downloadhaskell-75492e7467ff962f2f2e29e5c8b2c588c94ae8a7.tar.gz
Add typed holes support in Template Haskell.
Fixes #10267. Typed holes in typed Template Haskell currently don't work. See #10945 and #10946.
Diffstat (limited to 'testsuite/tests/th/T10267a.hs')
-rw-r--r--testsuite/tests/th/T10267a.hs8
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/tests/th/T10267a.hs b/testsuite/tests/th/T10267a.hs
new file mode 100644
index 0000000000..cabe97ef2c
--- /dev/null
+++ b/testsuite/tests/th/T10267a.hs
@@ -0,0 +1,8 @@
+{-# LANGUAGE TemplateHaskell #-}
+
+module T10267a where
+
+import Language.Haskell.TH
+
+varX :: Q Exp
+varX = [| x |]