2022-09-21 06:05:20 -05:00
|
|
|
error[E0080]: evaluation of constant value failed
|
|
|
|
--> $DIR/const-eval-overflow2.rs:12:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2022-02-13 09:27:59 -06:00
|
|
|
LL | i8::MIN - 1,
|
|
|
|
| ^^^^^^^^^^^ attempt to compute `i8::MIN - 1_i8`, which would overflow
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2022-09-21 06:05:20 -05:00
|
|
|
error[E0080]: evaluation of constant value failed
|
|
|
|
--> $DIR/const-eval-overflow2.rs:18:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2022-02-13 09:27:59 -06:00
|
|
|
LL | i16::MIN - 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `i16::MIN - 1_i16`, which would overflow
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2022-09-21 06:05:20 -05:00
|
|
|
error[E0080]: evaluation of constant value failed
|
|
|
|
--> $DIR/const-eval-overflow2.rs:24:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2022-02-13 09:27:59 -06:00
|
|
|
LL | i32::MIN - 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `i32::MIN - 1_i32`, which would overflow
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2022-09-21 06:05:20 -05:00
|
|
|
error[E0080]: evaluation of constant value failed
|
|
|
|
--> $DIR/const-eval-overflow2.rs:30:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2022-02-13 09:27:59 -06:00
|
|
|
LL | i64::MIN - 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `i64::MIN - 1_i64`, which would overflow
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2022-09-21 06:05:20 -05:00
|
|
|
error[E0080]: evaluation of constant value failed
|
|
|
|
--> $DIR/const-eval-overflow2.rs:36:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2022-02-13 09:27:59 -06:00
|
|
|
LL | u8::MIN - 1,
|
|
|
|
| ^^^^^^^^^^^ attempt to compute `0_u8 - 1_u8`, which would overflow
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2022-09-21 06:05:20 -05:00
|
|
|
error[E0080]: evaluation of constant value failed
|
|
|
|
--> $DIR/const-eval-overflow2.rs:41:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2022-02-13 09:27:59 -06:00
|
|
|
LL | u16::MIN - 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `0_u16 - 1_u16`, which would overflow
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2022-09-21 06:05:20 -05:00
|
|
|
error[E0080]: evaluation of constant value failed
|
|
|
|
--> $DIR/const-eval-overflow2.rs:46:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2022-02-13 09:27:59 -06:00
|
|
|
LL | u32::MIN - 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `0_u32 - 1_u32`, which would overflow
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2022-09-21 06:05:20 -05:00
|
|
|
error[E0080]: evaluation of constant value failed
|
|
|
|
--> $DIR/const-eval-overflow2.rs:52:6
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2022-02-13 09:27:59 -06:00
|
|
|
LL | u64::MIN - 1,
|
|
|
|
| ^^^^^^^^^^^^ attempt to compute `0_u64 - 1_u64`, which would overflow
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2018-09-19 10:22:03 -05:00
|
|
|
error: aborting due to 8 previous errors
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2022-09-21 06:05:20 -05:00
|
|
|
For more information about this error, try `rustc --explain E0080`.
|