]> git.proxmox.com Git - rustc.git/blame - src/test/ui/parser/foreign-const-semantic-fail.rs
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / parser / foreign-const-semantic-fail.rs
CommitLineData
74b04a01
XL
1fn main() {}
2
5869c6ff 3extern "C" {
74b04a01
XL
4 const A: isize;
5 //~^ ERROR extern items cannot be `const`
6 const B: isize = 42;
7 //~^ ERROR extern items cannot be `const`
8 //~| ERROR incorrect `static` inside `extern` block
9}