-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #109850 - MU001999:master, r=estebank
Emits non-overlapping suggestions for arguments with wrong types Fixes #109831
- Loading branch information
Showing
3 changed files
with
63 additions
and
3 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,9 @@ | ||
struct A; | ||
struct B; | ||
|
||
fn f(b1: B, b2: B, a2: C) {} //~ ERROR E0412 | ||
|
||
fn main() { | ||
f(A, A, B, C); //~ ERROR E0425 | ||
//~^ ERROR E0061 | ||
} |
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,51 @@ | ||
error[E0412]: cannot find type `C` in this scope | ||
--> $DIR/issue-109831.rs:4:24 | ||
| | ||
LL | struct A; | ||
| --------- similarly named struct `A` defined here | ||
... | ||
LL | fn f(b1: B, b2: B, a2: C) {} | ||
| ^ | ||
| | ||
help: a struct with a similar name exists | ||
| | ||
LL | fn f(b1: B, b2: B, a2: A) {} | ||
| ~ | ||
help: you might be missing a type parameter | ||
| | ||
LL | fn f<C>(b1: B, b2: B, a2: C) {} | ||
| +++ | ||
|
||
error[E0425]: cannot find value `C` in this scope | ||
--> $DIR/issue-109831.rs:7:16 | ||
| | ||
LL | struct A; | ||
| --------- similarly named unit struct `A` defined here | ||
... | ||
LL | f(A, A, B, C); | ||
| ^ help: a unit struct with a similar name exists: `A` | ||
|
||
error[E0061]: this function takes 3 arguments but 4 arguments were supplied | ||
--> $DIR/issue-109831.rs:7:5 | ||
| | ||
LL | f(A, A, B, C); | ||
| ^ - - - unexpected argument | ||
| | | | ||
| | expected `B`, found `A` | ||
| expected `B`, found `A` | ||
| | ||
note: function defined here | ||
--> $DIR/issue-109831.rs:4:4 | ||
| | ||
LL | fn f(b1: B, b2: B, a2: C) {} | ||
| ^ ----- ----- ----- | ||
help: remove the extra argument | ||
| | ||
LL - f(A, A, B, C); | ||
LL + f(/* B */, /* B */, B); | ||
| | ||
|
||
error: aborting due to 3 previous errors | ||
|
||
Some errors have detailed explanations: E0061, E0412, E0425. | ||
For more information about an error, try `rustc --explain E0061`. |