DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / imports / auxiliary / glob-conflict-cross-crate-2-extern.rs
12345678910
mod a { pub type C = i8; } mod b { pub type C = i16; } pub use a::*; pub use b::*;