Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
incremental
/
static_cycle
/
b.rs
blob: 7054b2ea4e3600f46c896d0fb932ef512517edf4 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}