2021-01-24 05:50:30 -06:00
|
|
|
error[E0080]: evaluation of constant value failed
|
2022-09-21 06:05:20 -05:00
|
|
|
--> $DIR/conditional_array_execution.rs:3:19
|
2022-06-04 10:06:04 -05:00
|
|
|
|
|
|
|
|
LL | const FOO: u32 = [X - Y, Y - X][(X < Y) as usize];
|
2022-09-21 06:05:20 -05:00
|
|
|
| ^^^^^ attempt to compute `5_u32 - 6_u32`, which would overflow
|
2022-06-04 10:06:04 -05:00
|
|
|
|
2022-09-21 06:05:20 -05:00
|
|
|
error: aborting due to previous error
|
2022-06-04 10:06:04 -05:00
|
|
|
|
2022-09-21 06:05:20 -05:00
|
|
|
For more information about this error, try `rustc --explain E0080`.
|