From bbe678d7300673016be8b8876188c01a4c8e048b Mon Sep 17 00:00:00 2001 From: sof Date: Wed, 1 Sep 1999 14:22:29 +0000 Subject: [PATCH] [project @ 1999-09-01 14:22:29 by sof] Verify that 'as' clause without 'qualified' brings both qual and unqual'ed name into scope --- ghc/tests/reader/should_compile/read025.hs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ghc/tests/reader/should_compile/read025.hs 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 + -- 1.7.10.4