mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 20:17:50 +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() {}
|