Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
incremental
/
static_refering_to_other_static
/
issue-49081.rs
blob: 8e3715d1d83415df54d2c512023fbed3516768e5 [
file
] [
log
] [
blame
]
// https://github.com/rust-lang/rust/issues/49081
// revisions:rpass1 rpass2
pub
static
A
:
i32
=
42
;
pub
static
B
:
&
i32
=
&
A
;
fn
main
()
{}