mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
28 lines
396 B
Rust
28 lines
396 B
Rust
// run-pass
|
|
// revisions: mirunsafeck thirunsafeck
|
|
// [thirunsafeck]compile-flags: -Z thir-unsafeck
|
|
|
|
#![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 };
|
|
}
|