]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/removed-syntax-extern-const.rs
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
[rust.git] / src / test / ui / parser / removed-syntax-extern-const.rs
1 extern {
2     const i: isize;
3     //~^ ERROR extern items cannot be `const`
4 }
5
6 fn main() {}