blob: 5fd69acdbfa6cd42737cb932f142013af1cfca7f (
plain) (
blame)
1
2
3
4
5
6
7
8
|
module B ( module A, test, reExport, X(..) ) where
import A ( A(..), test2, reExport, X(..) )
-- | This link shouldn't work: 'other'.
-- These links should work: 'A.other', 'Data.List.sortBy', 'test2', 'A.test2', 'Data.Maybe.fromMaybe'.
-- Module link: "Prelude".
test :: Int
test = 1
|