blob: 6eaa1da34b3e0cfca1aeb6326d5c3f738478f7ca (
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
|