On Thu, 30 Jun 2016 05:12:09 -0700, c...@zoffix.com wrote: > There was a comment on IRC from someone who doesn't have an account > (http://irclog.perlgeek.de/perl6/2016-06-30#i_12762654 ): > > use Module :ONLY<foo bar baz>; > > I do like :ONLY more than my original :SYM
Just got bitten by this in real-life code: https://github.com/zostay/p6-DOM-Tiny/issues/5 A module was overly lavish with its exports, exporting symbol `Text` (something I've no use for), which conflicted with `Text` namespace from another module I was trying to load. Not having a way to prevent those exports, I had to wrap the module into another module of my own making.