Closed
Description
Let's say lib.rs contains:
pub use some_crate as some_name;
in order to make a crate available as a different name, using a glob import in the same crate (but other file) as such:
use crate::some_name::*;
doesn't actually import anything into scope, while using explicit imports or pub extern crate some_crate as some_name;
instead works. This is possibly related to #52140