2020-02-15 03:47:27 -06:00
|
|
|
error: this arithmetic operation will overflow
|
|
|
|
--> $DIR/const-err2.rs:19:13
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-09-01 13:06:11 -05:00
|
|
|
LL | let a = -std::i8::MIN;
|
2020-06-19 11:57:15 -05:00
|
|
|
| ^^^^^^^^^^^^^ attempt to negate i8::MIN which would overflow
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-02-18 15:49:47 -06:00
|
|
|
= note: `#[deny(arithmetic_overflow)]` on by default
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2020-02-15 03:47:27 -06:00
|
|
|
error: this arithmetic operation will overflow
|
|
|
|
--> $DIR/const-err2.rs:21:18
|
2020-02-10 04:37:02 -06:00
|
|
|
|
|
|
|
|
LL | let a_i128 = -std::i128::MIN;
|
2020-06-19 11:57:15 -05:00
|
|
|
| ^^^^^^^^^^^^^^^ attempt to negate i128::MIN which would overflow
|
2020-02-10 04:37:02 -06:00
|
|
|
|
2020-02-15 03:47:27 -06:00
|
|
|
error: this arithmetic operation will overflow
|
|
|
|
--> $DIR/const-err2.rs:23:13
|
2019-09-01 13:06:11 -05:00
|
|
|
|
|
|
|
|
LL | let b = 200u8 + 200u8 + 200u8;
|
2020-06-19 11:57:15 -05:00
|
|
|
| ^^^^^^^^^^^^^ attempt to compute `200_u8 + 200_u8` which would overflow
|
2019-09-01 13:06:11 -05:00
|
|
|
|
2020-02-15 03:47:27 -06:00
|
|
|
error: this arithmetic operation will overflow
|
|
|
|
--> $DIR/const-err2.rs:25:18
|
2020-02-10 04:37:02 -06:00
|
|
|
|
|
|
|
|
LL | let b_i128 = std::i128::MIN - std::i128::MAX;
|
2020-06-19 11:57:15 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ attempt to compute `i128::MIN - i128::MAX` which would overflow
|
2020-02-10 04:37:02 -06:00
|
|
|
|
2020-02-15 03:47:27 -06:00
|
|
|
error: this arithmetic operation will overflow
|
|
|
|
--> $DIR/const-err2.rs:27:13
|
2019-09-01 13:06:11 -05:00
|
|
|
|
|
|
|
|
LL | let c = 200u8 * 4;
|
2020-06-19 11:57:15 -05:00
|
|
|
| ^^^^^^^^^ attempt to compute `200_u8 * 4_u8` which would overflow
|
2019-09-01 13:06:11 -05:00
|
|
|
|
2020-02-15 03:47:27 -06:00
|
|
|
error: this arithmetic operation will overflow
|
|
|
|
--> $DIR/const-err2.rs:29:13
|
2019-09-01 13:06:11 -05:00
|
|
|
|
|
|
|
|
LL | let d = 42u8 - (42u8 + 1);
|
2020-06-19 11:57:15 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^ attempt to compute `42_u8 - 43_u8` which would overflow
|
2019-09-01 13:06:11 -05:00
|
|
|
|
2020-02-15 03:47:27 -06:00
|
|
|
error: this operation will panic at runtime
|
|
|
|
--> $DIR/const-err2.rs:31:14
|
2019-09-01 13:06:11 -05:00
|
|
|
|
|
|
|
|
LL | let _e = [5u8][1];
|
2020-02-15 03:47:27 -06:00
|
|
|
| ^^^^^^^^ index out of bounds: the len is 1 but the index is 1
|
|
|
|
|
|
2020-02-18 15:49:47 -06:00
|
|
|
= note: `#[deny(unconditional_panic)]` on by default
|
2019-09-01 13:06:11 -05:00
|
|
|
|
2020-02-10 04:37:02 -06:00
|
|
|
error: aborting due to 7 previous errors
|
2018-08-08 07:28:26 -05:00
|
|
|
|