mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 05:34:45 +00:00
10 lines
183 B
Rust
10 lines
183 B
Rust
//@ known-bug: #130970
|
|
//@ compile-flags: -Zmir-enable-passes=+GVN -Zvalidate-mir
|
|
|
|
fn main() {
|
|
extern "C" {
|
|
static symbol: [usize];
|
|
}
|
|
println!("{}", symbol[0]);
|
|
}
|