-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of #70696 - jumbatm:extend-issue-69020-test, r=RalfJung
Extend #69020 test to include reversed operand order. Make sure we still emit if a lint if the generic argument comes first. See #70566 (comment). r? @RalfJung
- Loading branch information
Showing
7 changed files
with
184 additions
and
93 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
src/test/ui/associated-const/issue-69020-assoc-const-arith-overflow.noopt.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
error: this arithmetic operation will overflow | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:29:22 | ||
| | ||
LL | const NEG: i32 = -i32::MIN + T::NEG; | ||
| ^^^^^^^^^ attempt to negate with overflow | ||
| | ||
= note: `#[deny(arithmetic_overflow)]` on by default | ||
|
||
error: this arithmetic operation will overflow | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:31:35 | ||
| | ||
LL | const NEG_REV: i32 = T::NEG + (-i32::MIN); | ||
| ^^^^^^^^^^^ attempt to negate with overflow | ||
|
||
error: this arithmetic operation will overflow | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:34:22 | ||
| | ||
LL | const ADD: i32 = (i32::MAX+1) + T::ADD; | ||
| ^^^^^^^^^^^^ attempt to add with overflow | ||
|
||
error: this arithmetic operation will overflow | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:36:36 | ||
| | ||
LL | const ADD_REV: i32 = T::ADD + (i32::MAX+1); | ||
| ^^^^^^^^^^^^ attempt to add with overflow | ||
|
||
error: this operation will panic at runtime | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:39:22 | ||
| | ||
LL | const DIV: i32 = (1/0) + T::DIV; | ||
| ^^^^^ attempt to divide by zero | ||
| | ||
= note: `#[deny(unconditional_panic)]` on by default | ||
|
||
error: this operation will panic at runtime | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:41:35 | ||
| | ||
LL | const DIV_REV: i32 = T::DIV + (1/0); | ||
| ^^^^^ attempt to divide by zero | ||
|
||
error: this operation will panic at runtime | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:44:22 | ||
| | ||
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 | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:46:35 | ||
| | ||
LL | const OOB_REV: i32 = T::OOB + [1][1]; | ||
| ^^^^^^ index out of bounds: the len is 1 but the index is 1 | ||
|
||
error: aborting due to 8 previous errors | ||
|
54 changes: 54 additions & 0 deletions
54
src/test/ui/associated-const/issue-69020-assoc-const-arith-overflow.opt.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
error: this arithmetic operation will overflow | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:29:22 | ||
| | ||
LL | const NEG: i32 = -i32::MIN + T::NEG; | ||
| ^^^^^^^^^ attempt to negate with overflow | ||
| | ||
= note: `#[deny(arithmetic_overflow)]` on by default | ||
|
||
error: this arithmetic operation will overflow | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:31:35 | ||
| | ||
LL | const NEG_REV: i32 = T::NEG + (-i32::MIN); | ||
| ^^^^^^^^^^^ attempt to negate with overflow | ||
|
||
error: this arithmetic operation will overflow | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:34:22 | ||
| | ||
LL | const ADD: i32 = (i32::MAX+1) + T::ADD; | ||
| ^^^^^^^^^^^^ attempt to add with overflow | ||
|
||
error: this arithmetic operation will overflow | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:36:36 | ||
| | ||
LL | const ADD_REV: i32 = T::ADD + (i32::MAX+1); | ||
| ^^^^^^^^^^^^ attempt to add with overflow | ||
|
||
error: this operation will panic at runtime | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:39:22 | ||
| | ||
LL | const DIV: i32 = (1/0) + T::DIV; | ||
| ^^^^^ attempt to divide by zero | ||
| | ||
= note: `#[deny(unconditional_panic)]` on by default | ||
|
||
error: this operation will panic at runtime | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:41:35 | ||
| | ||
LL | const DIV_REV: i32 = T::DIV + (1/0); | ||
| ^^^^^ attempt to divide by zero | ||
|
||
error: this operation will panic at runtime | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:44:22 | ||
| | ||
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 | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:46:35 | ||
| | ||
LL | const OOB_REV: i32 = T::OOB + [1][1]; | ||
| ^^^^^^ index out of bounds: the len is 1 but the index is 1 | ||
|
||
error: aborting due to 8 previous errors | ||
|
54 changes: 54 additions & 0 deletions
54
...i/associated-const/issue-69020-assoc-const-arith-overflow.opt_with_overflow_checks.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
error: this arithmetic operation will overflow | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:29:22 | ||
| | ||
LL | const NEG: i32 = -i32::MIN + T::NEG; | ||
| ^^^^^^^^^ attempt to negate with overflow | ||
| | ||
= note: `#[deny(arithmetic_overflow)]` on by default | ||
|
||
error: this arithmetic operation will overflow | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:31:35 | ||
| | ||
LL | const NEG_REV: i32 = T::NEG + (-i32::MIN); | ||
| ^^^^^^^^^^^ attempt to negate with overflow | ||
|
||
error: this arithmetic operation will overflow | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:34:22 | ||
| | ||
LL | const ADD: i32 = (i32::MAX+1) + T::ADD; | ||
| ^^^^^^^^^^^^ attempt to add with overflow | ||
|
||
error: this arithmetic operation will overflow | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:36:36 | ||
| | ||
LL | const ADD_REV: i32 = T::ADD + (i32::MAX+1); | ||
| ^^^^^^^^^^^^ attempt to add with overflow | ||
|
||
error: this operation will panic at runtime | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:39:22 | ||
| | ||
LL | const DIV: i32 = (1/0) + T::DIV; | ||
| ^^^^^ attempt to divide by zero | ||
| | ||
= note: `#[deny(unconditional_panic)]` on by default | ||
|
||
error: this operation will panic at runtime | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:41:35 | ||
| | ||
LL | const DIV_REV: i32 = T::DIV + (1/0); | ||
| ^^^^^ attempt to divide by zero | ||
|
||
error: this operation will panic at runtime | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:44:22 | ||
| | ||
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 | ||
--> $DIR/issue-69020-assoc-const-arith-overflow.rs:46:35 | ||
| | ||
LL | const OOB_REV: i32 = T::OOB + [1][1]; | ||
| ^^^^^^ index out of bounds: the len is 1 but the index is 1 | ||
|
||
error: aborting due to 8 previous errors | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
30 changes: 0 additions & 30 deletions
30
src/test/ui/consts/issue-69020.opt_with_overflow_checks.stderr
This file was deleted.
Oops, something went wrong.