]> git.lizzy.rs Git - rust.git/blob - tests/ui/extern/issue-36122-accessing-externed-dst.rs
Rollup merge of #106470 - ehuss:tidy-no-wasm, r=Mark-Simulacrum
[rust.git] / tests / ui / extern / issue-36122-accessing-externed-dst.rs
1 fn main() {
2     extern "C" {
3         static symbol: [usize]; //~ ERROR: the size for values of type
4     }
5     println!("{}", symbol[0]);
6 }