```rust // inner crate pub struct S { pub x: i32, y: i32, } // outer crate pub use inner::S; ```  _Originally posted by @jyn514 in https://github.com/rust-lang/rust/pull/91408#discussion_r760635400_