4ffeacafef8d530062622f6c53155f14ccca4063
[ghc-hetmet.git] / ghc / tests / rename / should_compile / rn031.hs
1 -- !!! Checking that an imported module may still have
2 -- !!! a local alias without having used 'qualified'.
3 module ShouldSucceed 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 = isJust