summary refs log tree commit diff
path: root/src/test/ui/parser/foreign-const-semantic-fail.rs
blob: 82978e655ba38b73f73aef57e779178e5be94660 (plain)
1
2
3
4
5
6
7
8
9
fn main() {}

extern {
    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
}