diff options
author | Shayne Fletcher <shayne.fletcher@digitalasset.com> | 2019-05-07 17:35:50 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-05-08 15:29:01 -0400 |
commit | ed5f858b8484a207e28baf9cbec4c60de1c86187 (patch) | |
tree | 4dfe0b1ff3970bf2cac267299251e803f7ced7e8 /testsuite/tests/module/mod183.hs | |
parent | 0eeb4cfad732d0b9b278c2274cb6db9633f9d3b5 (diff) | |
download | haskell-ed5f858b8484a207e28baf9cbec4c60de1c86187.tar.gz |
Implement ImportQualifiedPost
Diffstat (limited to 'testsuite/tests/module/mod183.hs')
-rw-r--r-- | testsuite/tests/module/mod183.hs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/tests/module/mod183.hs b/testsuite/tests/module/mod183.hs new file mode 100644 index 0000000000..37d627645c --- /dev/null +++ b/testsuite/tests/module/mod183.hs @@ -0,0 +1,7 @@ +{-# LANGUAGE ImportQualifiedPost #-} + +-- 'qualified' can not appear in both pre and postpositive positions. + +import qualified Prelude qualified + +main = Prelude.undefined |