[project @ 2000-11-03 16:23:37 by simonmar]
[ghc-hetmet.git] / ghc / tests / rename / should_compile / rn033.hs
1 -- !!! Checking that lazy name clashing works
2 module ShouldCompile where
3
4 import List ( sort )
5
6 sort :: Int
7 sort = 3
8
9 foo :: Int
10 foo = ShouldCompile.sort
11
12 baz :: (Ord a) => [a] -> [a]
13 baz = List.sort
14