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