We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The following does not compile.
mod foo { use *; pub fn meow(){bar()} } pub fn bar(){} fn main(){foo::meow()}
Also tried use ::*; use {*}; and use ::{*};.
use ::*;
use {*};
use ::{*};
I'm not sure why we don't support this case. Maybe nobody felt anyone would ever use it? It sure would be nice to have in winapi.