blob: 4af32cfa3f1a2672fe81d6ff456ed07523000148 [file] [log] [blame]
//@ run-rustfix
const _A: i32 = 123;
//~^ ERROR: missing type for `const` item
fn main() {
const _B: i32 = 123;
//~^ ERROR: missing type for `const` item
}