2025-05-28 10:29:08 +00:00
|
|
|
error[E0080]: attempt to compute `0_usize - 1_usize`, which would overflow
|
2022-07-19 02:25:14 +03:00
|
|
|
--> $DIR/simple_fail.rs:9:10
|
2021-01-27 13:28:52 +01:00
|
|
|
|
|
2022-07-19 02:25:14 +03:00
|
|
|
LL | [u8; N - 1]: Sized,
|
2025-05-30 14:06:35 +00:00
|
|
|
| ^^^^^ evaluation of `test::<0>::{constant#0}` failed here
|
2021-01-27 13:28:52 +01:00
|
|
|
|
2025-05-28 10:29:08 +00:00
|
|
|
error[E0080]: attempt to compute `0_usize - 1_usize`, which would overflow
|
2021-08-27 18:04:57 +02:00
|
|
|
--> $DIR/simple_fail.rs:4:33
|
2020-09-10 08:52:02 +02:00
|
|
|
|
|
|
|
|
|
LL | type Arr<const N: usize> = [u8; N - 1];
|
2025-05-30 14:06:35 +00:00
|
|
|
| ^^^^^ evaluation of `Arr::<0>::{constant#0}` failed here
|
2020-09-10 08:52:02 +02:00
|
|
|
|
2021-01-27 13:28:52 +01:00
|
|
|
error: aborting due to 2 previous errors
|
2020-09-10 08:52:02 +02:00
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0080`.
|