blob: 0a2935c5adc58041edeb1ec2dae3794bb873d642 (
plain)
1
2
3
4
5
6
7
8
|
-- !!! Checking that you can hide a constructor
module ShouldCompile where
import Rn037Help hiding( C )
-- C is the constructor, but we should
-- still be able to hide it
f x = Rn037Help.C
|