Files
rust/src/test/ui/extern/issue-36122-accessing-externed-dst.rs
2019-11-15 23:54:52 +09:00

7 lines
135 B
Rust

fn main() {
extern {
static symbol: [usize]; //~ ERROR: the size for values of type
}
println!("{}", symbol[0]);
}