diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2011-09-02 08:52:08 +0100 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2011-09-02 08:52:08 +0100 |
commit | d947d38fe3b3fae4c3393c968c39c9082ae5c078 (patch) | |
tree | a35175627380f5e6f874df979a831f149c756f50 /testsuite/tests/th/T5434.hs | |
parent | 8af2f36d6418efec6b0d1ca9d4ac10a2cba6989e (diff) | |
download | haskell-d947d38fe3b3fae4c3393c968c39c9082ae5c078.tar.gz |
Test Trac #5434 and #5452
Diffstat (limited to 'testsuite/tests/th/T5434.hs')
-rw-r--r-- | testsuite/tests/th/T5434.hs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/tests/th/T5434.hs b/testsuite/tests/th/T5434.hs new file mode 100644 index 0000000000..63047229ac --- /dev/null +++ b/testsuite/tests/th/T5434.hs @@ -0,0 +1,12 @@ +{-# LANGUAGE TemplateHaskell #-} + +module T5434 where + +import T5434a + +$(genShadow1) + +v :: Bool +v = True + +$(genShadow2) |