mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-27 07:07:10 +00:00
11 lines
256 B
Rust
11 lines
256 B
Rust
//@ revisions:rpass1 rpass2
|
|
//@ ignore-backends: gcc
|
|
|
|
#![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() {}
|