ff705b6f97d59ac0d494c1c79d0cb184be025d0f
[ghc-hetmet.git] / ghc / tests / rename / should_compile / rn030.hs
1 -- !!! Checking that more than imported module can share a local
2 -- !!! local alias.
3 module ShouldSucceed where
4
5 import qualified List  as X
6 import qualified Maybe as X
7
8 x :: Ord a => [a] -> [a]
9 x = X.sort
10
11 y :: Maybe a -> Bool
12 y = X.isJust