summaryrefslogtreecommitdiff
path: root/testsuite/tests/th/TH_bracket1.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/th/TH_bracket1.hs')
-rw-r--r--testsuite/tests/th/TH_bracket1.hs7
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/tests/th/TH_bracket1.hs b/testsuite/tests/th/TH_bracket1.hs
new file mode 100644
index 0000000000..393ca47fbd
--- /dev/null
+++ b/testsuite/tests/th/TH_bracket1.hs
@@ -0,0 +1,7 @@
+-- Check that declarations in a bracket shadow the top-level
+-- declarations, rather than clashing with them.
+
+module TH_bracket1 where
+
+foo = 1
+bar = [d| foo = 1 |]