blob: ce7a945c6e7516ad809686aea005afc339dd2201 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{-# LANGUAGE Haskell2010 #-}
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
|