]> git.proxmox.com Git - rustc.git/blame - src/test/ui/parser/foreign-const-syntactic-fail.rs
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / parser / foreign-const-syntactic-fail.rs
CommitLineData
74b04a01
XL
1// Syntactically, a `const` item inside an `extern { ... }` block is not allowed.
2
3fn main() {}
4
5#[cfg(FALSE)]
5869c6ff 6extern "C" {
74b04a01
XL
7 const A: isize; //~ ERROR extern items cannot be `const`
8 const B: isize = 42; //~ ERROR extern items cannot be `const`
9}