[project @ 1999-09-01 14:22:29 by sof]
authorsof <unknown>
Wed, 1 Sep 1999 14:22:29 +0000 (14:22 +0000)
committersof <unknown>
Wed, 1 Sep 1999 14:22:29 +0000 (14:22 +0000)
Verify that 'as' clause without 'qualified' brings both qual and unqual'ed name into scope

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

diff --git a/ghc/tests/reader/should_compile/read025.hs b/ghc/tests/reader/should_compile/read025.hs
new file mode 100644 (file)
index 0000000..bda06c1
--- /dev/null
@@ -0,0 +1,9 @@
+-- !!! Check the handling of 'qualified' and 'as' clauses
+module ShouldCompile where
+
+import List as L ( intersperse ) 
+
+x = L.intersperse
+
+y = intersperse
+