blob: 945276937c32c467596d59708320d1e85a2ef978 (
plain)
1
2
3
4
5
6
7
8
|
-- !!! Fixed bug: Re-exporting a subset of a class' methods
module Mod102 where
import Mod102_AuxB
-- methB is not imported by Mod102_AuxB, hence not exported either.
x :: Bool -> ()
x = methB False
|