mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
982b49494e
This is to make the diff when stabilizing it easier to review.
26 lines
308 B
Rust
26 lines
308 B
Rust
// run-pass
|
|
|
|
#![allow(unused_variables)]
|
|
|
|
macro_rules! duplicate {
|
|
($i: item) => {
|
|
mod m1 {
|
|
$i
|
|
}
|
|
mod m2 {
|
|
$i
|
|
}
|
|
}
|
|
}
|
|
|
|
duplicate! {
|
|
pub union U {
|
|
pub a: u8
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let u1 = m1::U { a: 0 };
|
|
let u2 = m2::U { a: 0 };
|
|
}
|