[project @ 2000-07-13 15:45:55 by simonmar]
[ghc-hetmet.git] / ghc / tests / rename / should_fail / rnfail022.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