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