mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
10 lines
231 B
Rust
10 lines
231 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() {}
|