mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-21 22:01:17 +01:00
10 lines
176 B
Rust
10 lines
176 B
Rust
//@ known-bug: #130970
|
|
//@ compile-flags: -Zmir-opt-level=5 -Zvalidate-mir
|
|
|
|
fn main() {
|
|
extern "C" {
|
|
static symbol: [usize];
|
|
}
|
|
println!("{}", symbol[0]);
|
|
}
|