fdba3a8d54a92bd4135cca52e9b390822e93acf2
[ghc-hetmet.git] / ghc / tests / rename / should_compile / rn026.hs
1 -- !!! Checking that more than imported module can share a local
2 -- !!! local alias.
3 module ShouldCompile 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