2022-07-19 02:25:14 +03:00
|
|
|
error[E0080]: evaluation of `test::<0>::{constant#0}` failed
|
|
|
|
--> $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,
|
|
|
|
| ^^^^^ attempt to compute `0_usize - 1_usize`, which would overflow
|
2021-01-27 13:28:52 +01:00
|
|
|
|
2022-07-19 02:25:14 +03:00
|
|
|
error[E0080]: evaluation of `Arr::<0>::{constant#0}` failed
|
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];
|
2020-09-15 20:34:50 +01:00
|
|
|
| ^^^^^ attempt to compute `0_usize - 1_usize`, which would overflow
|
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`.
|