Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
incremental
/
extern_static
/
issue-49153.rs
blob: f1dbac288853e95cca53e43aba0e007dc7d0b023 [
file
] [
log
] [
blame
]
// https://github.com/rust-lang/rust/issues/49153
// revisions:rpass1 rpass2
extern
"C"
{
pub
static
__ImageBase
:
u8
;
}
pub
static
FOO
:
&
'
static
u8
=
unsafe
{
&
__ImageBase
};
fn
main
()
{}