forked from rust-lang/rust
-
-
Notifications
You must be signed in to change notification settings - Fork 0
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 rust-lang#83535 - MidasLamb:mir-type-count-mismatch, …
…r=nikomatsakis Break when there is a mismatch in the type count When other errors are generated, there can be a mismatch between the amount of input types in MIR, and the amount in the function itself. Break from the comparative loop if this is the case to prevent out-of-bounds. Fixes rust-lang#83499
- Loading branch information
Showing
3 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
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 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,10 @@ | ||
// Test that when in MIR the amount of local_decls and amount of normalized_input_tys don't match | ||
// that an out-of-bounds access does not occur. | ||
#![feature(c_variadic)] | ||
|
||
fn main() {} | ||
|
||
fn foo(_: Bar, ...) -> impl {} | ||
//~^ ERROR only foreign or `unsafe extern "C" functions may be C-variadic | ||
//~| ERROR cannot find type `Bar` in this scope | ||
//~| ERROR at least one trait must be specified |
21 changes: 21 additions & 0 deletions
21
src/test/ui/mir/issue-83499-input-output-iteration-ice.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,21 @@ | ||
error: only foreign or `unsafe extern "C" functions may be C-variadic | ||
--> $DIR/issue-83499-input-output-iteration-ice.rs:7:16 | ||
| | ||
LL | fn foo(_: Bar, ...) -> impl {} | ||
| ^^^ | ||
|
||
error: at least one trait must be specified | ||
--> $DIR/issue-83499-input-output-iteration-ice.rs:7:24 | ||
| | ||
LL | fn foo(_: Bar, ...) -> impl {} | ||
| ^^^^ | ||
|
||
error[E0412]: cannot find type `Bar` in this scope | ||
--> $DIR/issue-83499-input-output-iteration-ice.rs:7:11 | ||
| | ||
LL | fn foo(_: Bar, ...) -> impl {} | ||
| ^^^ not found in this scope | ||
|
||
error: aborting due to 3 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0412`. |