mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
11 lines
93 B
Rust
11 lines
93 B
Rust
mod a {
|
|
pub type C = i8;
|
|
}
|
|
|
|
mod b {
|
|
pub type C = i16;
|
|
}
|
|
|
|
pub use a::*;
|
|
pub use b::*;
|