blob: 61d3eab24d8c7b9c257776f39f865b2133b463be [file] [log] [blame]
// Semantically, a free `static` item cannot omit its body.
fn main() {}
static A: u8; //~ ERROR free static item without body
static B; //~ ERROR free static item without body
static mut C: u8; //~ ERROR free static item without body
static mut D; //~ ERROR free static item without body