Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
incremental
/
extern_static
/
issue-49153.rs
blob: 386c175be523903cb420e21e1b0e2f2b058f9dfb [
file
] [
log
] [
blame
] [
edit
]
// https://github.com/rust-lang/rust/issues/49153
//@ revisions:rpass1 rpass2
//@ ignore-backends: gcc
extern
"C"
{
pub
static
__ImageBase
:
u8
;
}
pub
static
FOO
:
&
'
static
u8
=
unsafe
{
&
__ImageBase
};
fn
main
()
{}