[project @ 1999-11-16 11:40:32 by simonmar]
[ghc-hetmet.git] / ghc / tests / reader / should_fail / read010.hs
1 -- !!! Check that 'qualified' doesn't bring the unqual'ed name into scope.
2 module ShouldFail where
3
4 import qualified List as L ( intersperse ) 
5
6 x = L.intersperse
7
8 y = intersperse
9