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.
Example:
mod foo { pub mod bar {} pub use self::bar as baz; // This cannot be resolved because of the glob pub use self::baz::*; }
EDIT: Another more realistic example:
mod foo { pub mod bar {} pub use baz::bar::*; } mod baz { pub use foo::bar; }
Without the glob, they resolve.