2020-04-02 07:47:53 -05:00
|
|
|
error: this arithmetic operation will overflow
|
2020-04-02 17:05:16 -05:00
|
|
|
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:29:22
|
2020-04-02 07:47:53 -05:00
|
|
|
|
|
|
|
|
LL | const NEG: i32 = -i32::MIN + T::NEG;
|
2020-06-19 11:57:15 -05:00
|
|
|
| ^^^^^^^^^ attempt to negate i32::MIN which would overflow
|
2020-04-02 07:47:53 -05:00
|
|
|
|
|
|
|
|
= note: `#[deny(arithmetic_overflow)]` on by default
|
|
|
|
|
|
|
|
error: this arithmetic operation will overflow
|
2020-04-02 17:05:16 -05:00
|
|
|
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:31:35
|
2020-04-02 07:47:53 -05:00
|
|
|
|
|
2020-04-02 17:05:16 -05:00
|
|
|
LL | const NEG_REV: i32 = T::NEG + (-i32::MIN);
|
2020-06-19 11:57:15 -05:00
|
|
|
| ^^^^^^^^^^^ attempt to negate i32::MIN which would overflow
|
2020-04-02 07:47:53 -05:00
|
|
|
|
|
|
|
error: this arithmetic operation will overflow
|
2020-04-02 17:05:16 -05:00
|
|
|
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:34:22
|
2020-04-02 07:47:53 -05:00
|
|
|
|
|
|
|
|
LL | const ADD: i32 = (i32::MAX+1) + T::ADD;
|
2020-06-19 11:57:15 -05:00
|
|
|
| ^^^^^^^^^^^^ attempt to compute `i32::MAX + 1_i32` which would overflow
|
2020-04-02 07:47:53 -05:00
|
|
|
|
|
|
|
error: this arithmetic operation will overflow
|
2020-04-02 17:05:16 -05:00
|
|
|
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:36:36
|
2020-04-02 07:47:53 -05:00
|
|
|
|
|
2020-04-02 17:05:16 -05:00
|
|
|
LL | const ADD_REV: i32 = T::ADD + (i32::MAX+1);
|
2020-06-19 11:57:15 -05:00
|
|
|
| ^^^^^^^^^^^^ attempt to compute `i32::MAX + 1_i32` which would overflow
|
2020-04-02 07:47:53 -05:00
|
|
|
|
|
|
|
error: this operation will panic at runtime
|
2020-04-02 17:05:16 -05:00
|
|
|
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:39:22
|
2020-04-02 07:47:53 -05:00
|
|
|
|
|
|
|
|
LL | const DIV: i32 = (1/0) + T::DIV;
|
2020-06-19 11:57:15 -05:00
|
|
|
| ^^^^^ attempt to divide 1_i32 by zero
|
2020-04-02 07:47:53 -05:00
|
|
|
|
|
|
|
|
= note: `#[deny(unconditional_panic)]` on by default
|
|
|
|
|
|
|
|
error: this operation will panic at runtime
|
2020-04-02 17:05:16 -05:00
|
|
|
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:41:35
|
2020-04-02 07:47:53 -05:00
|
|
|
|
|
2020-04-02 17:05:16 -05:00
|
|
|
LL | const DIV_REV: i32 = T::DIV + (1/0);
|
2020-06-19 11:57:15 -05:00
|
|
|
| ^^^^^ attempt to divide 1_i32 by zero
|
2020-04-02 07:47:53 -05:00
|
|
|
|
|
|
|
error: this operation will panic at runtime
|
2020-04-02 17:05:16 -05:00
|
|
|
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:44:22
|
2020-04-02 07:47:53 -05:00
|
|
|
|
|
|
|
|
LL | const OOB: i32 = [1][1] + T::OOB;
|
|
|
|
| ^^^^^^ index out of bounds: the len is 1 but the index is 1
|
|
|
|
|
|
|
|
error: this operation will panic at runtime
|
2020-04-02 17:05:16 -05:00
|
|
|
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:46:35
|
2020-04-02 07:47:53 -05:00
|
|
|
|
|
2020-04-02 17:05:16 -05:00
|
|
|
LL | const OOB_REV: i32 = T::OOB + [1][1];
|
|
|
|
| ^^^^^^ index out of bounds: the len is 1 but the index is 1
|
2020-04-02 07:47:53 -05:00
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
|