Files
rust/src/test/ui/parser/foreign-const-semantic-fail.rs

9 lines
162 B
Rust
Raw Normal View History

2020-02-15 02:23:10 +01:00
fn main() {}
extern {
const A: isize;
//~^ ERROR extern items cannot be `const`
const B: isize = 42;
//~^ ERROR extern items cannot be `const`
}