[project @ 2001-08-08 14:23:09 by simonmar]
[ghc-hetmet.git] / ghc / tests / reader / should_compile / read016.hs
1 -- !!! Checking that both import lists and 'hiding' lists might
2 -- !!! be empty.
3 module ShouldCompile where
4
5 import List  ()
6 import List  hiding ()
7
8 x :: Int
9 x = 1
10