From: simonm Date: Tue, 7 Oct 1997 14:50:40 +0000 (+0000) Subject: [project @ 1997-10-07 14:50:40 by simonm] X-Git-Tag: Approx_2487_patches~1416 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=3d2590233e636566dc0b43fcccb0b7b2ac7c4f50;p=ghc-hetmet.git [project @ 1997-10-07 14:50:40 by simonm] test for qualified Prelude bug --- diff --git a/ghc/tests/reader/should_compile/read001.hs b/ghc/tests/reader/should_compile/read001.hs new file mode 100644 index 0000000..6b8f86e --- /dev/null +++ b/ghc/tests/reader/should_compile/read001.hs @@ -0,0 +1,8 @@ +--!!! import qualified Prelude should leave (), [] etc in scope + +module ShouldCompile where + +import qualified Prelude + +f :: Prelude.IO () +f = Prelude.return ()