summary refs log tree commit diff
path: root/src/test/ui/parser/foreign-static-semantic-fail.rs
blob: 9abdf33df9c46a468673061f11b0bfdaabb95198 (plain)
1
2
3
4
5
6
7
8
// Syntactically, a foreign static may not have a body.

fn main() {}

extern {
    static X: u8 = 0; //~ ERROR incorrect `static` inside `extern` block
    static mut Y: u8 = 0; //~ ERROR incorrect `static` inside `extern` block
}