rust/tests/ui/consts/const-len-underflow-separate-spans.next.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
519 B
Plaintext
Raw Normal View History

2022-09-21 06:05:20 -05:00
error[E0080]: evaluation of constant value failed
--> $DIR/const-len-underflow-separate-spans.rs:10:20
|
2018-02-22 18:42:32 -06:00
LL | const LEN: usize = ONE - TWO;
2022-09-21 06:05:20 -05:00
| ^^^^^^^^^ attempt to compute `1_usize - 2_usize`, which would overflow
2018-03-05 03:21:11 -06:00
note: erroneous constant encountered
--> $DIR/const-len-underflow-separate-spans.rs:14:17
2018-06-02 20:01:06 -05:00
|
LL | let a: [i8; LEN] = unimplemented!();
| ^^^
error: aborting due to 1 previous error
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0080`.