rust/tests/ui/imports/auxiliary/glob-conflict-cross-crate-2-extern.rs

11 lines
93 B
Rust
Raw Normal View History

2024-01-21 05:17:28 -06:00
mod a {
pub type C = i8;
}
mod b {
pub type C = i16;
}
pub use a::*;
pub use b::*;