blob: 078e4c896df80ec3e257d61d7f548e556770c81b [file] [log] [blame]
// check-pass
#![warn(const_err)]
pub const Z: u32 = 0 - 1;
//~^ WARN any use of this value will cause an error
pub type Foo = [i32; 0 - 1];
fn main() {}