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/mod184.hs | |
parent | 0eeb4cfad732d0b9b278c2274cb6db9633f9d3b5 (diff) | |
download | haskell-ed5f858b8484a207e28baf9cbec4c60de1c86187.tar.gz |
Implement ImportQualifiedPost
Diffstat (limited to 'testsuite/tests/module/mod184.hs')
-rw-r--r-- | testsuite/tests/module/mod184.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/tests/module/mod184.hs b/testsuite/tests/module/mod184.hs new file mode 100644 index 0000000000..7ccc78eafb --- /dev/null +++ b/testsuite/tests/module/mod184.hs @@ -0,0 +1,8 @@ +{-# LANGUAGE ImportQualifiedPost #-} + +-- With '-Wprepositive-qualified-module', a prepositive qualified +-- import should warn. + +import qualified Prelude + +main = Prelude.undefined |