Files
rust/src/test/ui/extern/issue-36122-accessing-externed-dst.rs

7 lines
135 B
Rust
Raw Normal View History

2019-11-14 16:50:32 +09:00
fn main() {
extern {
static symbol: [usize]; //~ ERROR: the size for values of type
}
println!("{}", symbol[0]);
}