[project @ 1997-10-07 14:50:40 by simonm]
authorsimonm <unknown>
Tue, 7 Oct 1997 14:50:40 +0000 (14:50 +0000)
committersimonm <unknown>
Tue, 7 Oct 1997 14:50:40 +0000 (14:50 +0000)
test for qualified Prelude bug

ghc/tests/reader/should_compile/read001.hs [new file with mode: 0644]

diff --git a/ghc/tests/reader/should_compile/read001.hs b/ghc/tests/reader/should_compile/read001.hs
new file mode 100644 (file)
index 0000000..6b8f86e
--- /dev/null
@@ -0,0 +1,8 @@
+--!!! import qualified Prelude should leave (), [] etc in scope
+
+module ShouldCompile where
+
+import qualified Prelude
+
+f :: Prelude.IO ()
+f = Prelude.return ()