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-15 02:23:10 +01:00
fn main() {}
2020-09-01 17:12:52 -04:00
extern "C" {
2020-02-15 02:23:10 +01: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-15 02:23:10 +01:00
}