blob: 1540bffa0ad29cd9bf9b98b41cbd7430b7af6caa [file] [log] [blame]
// Check that a constant-evaluation underflow highlights the correct
// spot (where the underflow occurred).
const ONE: usize = 1;
const TWO: usize = 2;
fn main() {
let a: [i8; ONE - TWO] = unimplemented!();
//~^ ERROR attempt to compute `1_usize - 2_usize`, which would overflow
}