Is it possible to write a module in Haskell, which re-exports a module in addition to exporting everything visible inside?
Lets consider following m
There is a simple solution, just export the module from the module:
module Test ( module Test , module A ) where import Prelude() import A f x = x