2018-03-20 10:36:45 +01:00
|
|
|
// https://github.com/rust-lang/rust/issues/49153
|
|
|
|
|
|
2024-02-22 12:10:29 +00:00
|
|
|
//@ revisions:rpass1 rpass2
|
2018-03-20 10:36:45 +01:00
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
pub static __ImageBase: u8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub static FOO: &'static u8 = unsafe { &__ImageBase };
|
|
|
|
|
|
|
|
|
|
fn main() {}
|