rust/tests/ui/imports/auxiliary/glob-conflict-cross-crate-2-extern.rs
2024-01-24 00:01:59 +08:00

11 lines
93 B
Rust

mod a {
pub type C = i8;
}
mod b {
pub type C = i16;
}
pub use a::*;
pub use b::*;