blob: 72340173b5ca19bfc02bac83a665ab7bfdbfbd92 [file] [log] [blame] [edit]
// 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() {}