]> git.lizzy.rs Git - rust.git/blob - src/test/ui/extern/issue-36122-accessing-externed-dst.rs
Rollup merge of #82259 - osa1:issue82156, r=petrochenkov
[rust.git] / src / test / 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 }