mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
10 lines
230 B
Rust
10 lines
230 B
Rust
// revisions:rpass1 rpass2
|
|
|
|
#![cfg_attr(rpass2, warn(dead_code))]
|
|
|
|
pub static mut BAA: *const i8 = unsafe { &BOO as *const _ as *const i8 };
|
|
|
|
pub static mut BOO: *const i8 = unsafe { &BAA as *const _ as *const i8 };
|
|
|
|
fn main() {}
|