[project @ 2001-08-22 11:45:06 by sewardj]
[ghc-hetmet.git] / ghc / tests / rename / should_compile / rn037.hs
1 -- !!! Checking that you can hide a constructor
2 module ShouldCompile where
3
4 import Rn037Help hiding( C )
5         -- C is the constructor, but we should
6         -- still be able to hide it
7
8 f x = Rn037Help.C
9
10
11
12