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.