mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
337 B
Rust
12 lines
337 B
Rust
// 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 evaluation of constant value failed
|
|
//~| attempt to compute `1_usize - 2_usize`, which would overflow
|
|
}
|