668d707a5c79690c2ad4cdec7168244b88f965de
[ghc-hetmet.git] / ghc / tests / rename / should_compile / rn037.hs
1 -- !!! Checking that you can hide a constructor
2 module ShouldSucceed 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