I know that I can re-export modules like following:
module Test (module Test) where
import Prelude as Test
import A as Test
f x = x
But now I want to do re-export a partial imported module like
module Test (module Test) where
import Prelude (map, filter) as Test
import A as Test
f x = x
References: