[project @ 2001-08-22 11:45:06 by sewardj]
[ghc-hetmet.git] / ghc / tests / rename / should_compile / rn027.hs
1 -- !!! Checking that an imported module may still have
2 -- !!! a local alias without having used 'qualified'.
3 module ShouldCompile where
4
5 import List  as X
6 import Maybe as X
7
8 x :: Ord a => [a] -> [a]
9 x = X.sort
10
11 y :: Maybe a -> Bool
12 y = X.isJust