mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
196 B
Rust
12 lines
196 B
Rust
// 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() {}
|