rust/tests/ui/parser/foreign-const-semantic-fail.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
222 B
Rust
Raw Normal View History

2020-02-14 19:23:10 -06:00
fn main() {}
2020-09-01 16:12:52 -05:00
extern "C" {
2020-02-14 19:23:10 -06:00
const A: isize;
//~^ ERROR extern items cannot be `const`
const B: isize = 42;
//~^ ERROR extern items cannot be `const`
//~| ERROR incorrect `static` inside `extern` block
2020-02-14 19:23:10 -06:00
}