On Mon, Jul 08, 2013 at 08:14:12PM +1000, Erik de Castro Lopo wrote:
> 
>    module MyModule
>        ( qualified module T
>         )
>    import qualified Data.Text as T
> 
> so that any module which imports MyModule has access to the symbols
> of Data.Text under the quaified module name T.

Do you mean that after
    import MyModule
that
    T.f
is in scope? Won't that be confusing?

What happens if you
    import MyModule as X
?


Thanks
Ian


_______________________________________________
ghc-devs mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/ghc-devs

Reply via email to