From: sof Date: Wed, 1 Sep 1999 14:22:29 +0000 (+0000) Subject: [project @ 1999-09-01 14:22:29 by sof] X-Git-Tag: Approximately_9120_patches~5846 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=bbe678d7300673016be8b8876188c01a4c8e048b;p=ghc-hetmet.git [project @ 1999-09-01 14:22:29 by sof] Verify that 'as' clause without 'qualified' brings both qual and unqual'ed name into scope --- diff --git a/ghc/tests/reader/should_compile/read025.hs b/ghc/tests/reader/should_compile/read025.hs new file mode 100644 index 0000000..bda06c1 --- /dev/null +++ b/ghc/tests/reader/should_compile/read025.hs @@ -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 +