diff options
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 |