-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suggest tuple-parentheses for enum variants #90677
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
94c300a
Suggest tuple-parentheses when passing N arguments to an N-tuple argu…
bobrippling 80059f9
Test tuple suggestions, including tuple-as-function-argument
bobrippling 54d2d30
Compare tuple element & arg types before suggesting a tuple
bobrippling a129a85
Handle generics with ParamEnv
bobrippling a8bac98
Remove 1-tuple unreachable case
bobrippling File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,16 @@ | ||
// Ensure we don't suggest tuple-wrapping when we'd end up with a type error | ||
|
||
fn main() { | ||
// we shouldn't suggest to fix these - `2` isn't a `bool` | ||
|
||
let _: Option<(i32, bool)> = Some(1, 2); | ||
//~^ ERROR this enum variant takes 1 argument but 2 arguments were supplied | ||
int_bool(1, 2); | ||
//~^ ERROR this function takes 1 argument but 2 arguments were supplied | ||
|
||
let _: Option<(i8,)> = Some(); | ||
//~^ ERROR this enum variant takes 1 argument but 0 arguments were supplied | ||
} | ||
|
||
fn int_bool(_: (i32, bool)) { | ||
} |
33 changes: 33 additions & 0 deletions
33
src/test/ui/suggestions/args-instead-of-tuple-errors.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,33 @@ | ||
error[E0061]: this enum variant takes 1 argument but 2 arguments were supplied | ||
--> $DIR/args-instead-of-tuple-errors.rs:6:34 | ||
| | ||
LL | let _: Option<(i32, bool)> = Some(1, 2); | ||
| ^^^^ - - supplied 2 arguments | ||
| | | ||
| expected 1 argument | ||
|
||
error[E0061]: this function takes 1 argument but 2 arguments were supplied | ||
--> $DIR/args-instead-of-tuple-errors.rs:8:5 | ||
| | ||
LL | int_bool(1, 2); | ||
| ^^^^^^^^ - - supplied 2 arguments | ||
| | | ||
| expected 1 argument | ||
| | ||
note: function defined here | ||
--> $DIR/args-instead-of-tuple-errors.rs:15:4 | ||
| | ||
LL | fn int_bool(_: (i32, bool)) { | ||
| ^^^^^^^^ -------------- | ||
|
||
error[E0061]: this enum variant takes 1 argument but 0 arguments were supplied | ||
--> $DIR/args-instead-of-tuple-errors.rs:11:28 | ||
| | ||
LL | let _: Option<(i8,)> = Some(); | ||
| ^^^^-- supplied 0 arguments | ||
| | | ||
| expected 1 argument | ||
|
||
error: aborting due to 3 previous errors | ||
|
||
For more information about this error, try `rustc --explain 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,27 @@ | ||
// Test suggesting tuples where bare arguments may have been passed | ||
// See issue #86481 for details. | ||
|
||
// run-rustfix | ||
|
||
fn main() { | ||
let _: Result<(i32, i8), ()> = Ok((1, 2)); | ||
//~^ ERROR this enum variant takes 1 argument but 2 arguments were supplied | ||
let _: Option<(i32, i8, &'static str)> = Some((1, 2, "hi")); | ||
//~^ ERROR this enum variant takes 1 argument but 3 arguments were supplied | ||
let _: Option<()> = Some(()); | ||
//~^ ERROR this enum variant takes 1 argument but 0 arguments were supplied | ||
|
||
two_ints((1, 2)); //~ ERROR this function takes 1 argument | ||
|
||
with_generic((3, 4)); //~ ERROR this function takes 1 argument | ||
} | ||
|
||
fn two_ints(_: (i32, i32)) { | ||
} | ||
|
||
fn with_generic<T: Copy + Send>((a, b): (i32, T)) { | ||
if false { | ||
// test generics/bound handling | ||
with_generic((a, b)); //~ ERROR this function takes 1 argument | ||
} | ||
} |
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,27 @@ | ||
// Test suggesting tuples where bare arguments may have been passed | ||
bobrippling marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// See issue #86481 for details. | ||
|
||
// run-rustfix | ||
|
||
fn main() { | ||
let _: Result<(i32, i8), ()> = Ok(1, 2); | ||
//~^ ERROR this enum variant takes 1 argument but 2 arguments were supplied | ||
let _: Option<(i32, i8, &'static str)> = Some(1, 2, "hi"); | ||
//~^ ERROR this enum variant takes 1 argument but 3 arguments were supplied | ||
let _: Option<()> = Some(); | ||
bobrippling marked this conversation as resolved.
Show resolved
Hide resolved
|
||
//~^ ERROR this enum variant takes 1 argument but 0 arguments were supplied | ||
|
||
two_ints(1, 2); //~ ERROR this function takes 1 argument | ||
|
||
with_generic(3, 4); //~ ERROR this function takes 1 argument | ||
} | ||
|
||
fn two_ints(_: (i32, i32)) { | ||
} | ||
|
||
fn with_generic<T: Copy + Send>((a, b): (i32, T)) { | ||
if false { | ||
// test generics/bound handling | ||
with_generic(a, b); //~ ERROR this function takes 1 argument | ||
} | ||
} |
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,84 @@ | ||
error[E0061]: this enum variant takes 1 argument but 2 arguments were supplied | ||
--> $DIR/args-instead-of-tuple.rs:7:36 | ||
| | ||
LL | let _: Result<(i32, i8), ()> = Ok(1, 2); | ||
| ^^ - - supplied 2 arguments | ||
| | ||
help: use parentheses to construct a tuple | ||
| | ||
LL | let _: Result<(i32, i8), ()> = Ok((1, 2)); | ||
| + + | ||
|
||
error[E0061]: this enum variant takes 1 argument but 3 arguments were supplied | ||
--> $DIR/args-instead-of-tuple.rs:9:46 | ||
| | ||
LL | let _: Option<(i32, i8, &'static str)> = Some(1, 2, "hi"); | ||
| ^^^^ - - ---- supplied 3 arguments | ||
| | ||
help: use parentheses to construct a tuple | ||
| | ||
LL | let _: Option<(i32, i8, &'static str)> = Some((1, 2, "hi")); | ||
| + + | ||
|
||
error[E0061]: this enum variant takes 1 argument but 0 arguments were supplied | ||
--> $DIR/args-instead-of-tuple.rs:11:25 | ||
| | ||
LL | let _: Option<()> = Some(); | ||
| ^^^^-- supplied 0 arguments | ||
| | ||
help: expected the unit value `()`; create it with empty parentheses | ||
| | ||
LL | let _: Option<()> = Some(()); | ||
| ++ | ||
|
||
error[E0061]: this function takes 1 argument but 2 arguments were supplied | ||
--> $DIR/args-instead-of-tuple.rs:14:5 | ||
| | ||
LL | two_ints(1, 2); | ||
| ^^^^^^^^ - - supplied 2 arguments | ||
| | ||
note: function defined here | ||
--> $DIR/args-instead-of-tuple.rs:19:4 | ||
| | ||
LL | fn two_ints(_: (i32, i32)) { | ||
| ^^^^^^^^ ------------- | ||
help: use parentheses to construct a tuple | ||
| | ||
LL | two_ints((1, 2)); | ||
| + + | ||
|
||
error[E0061]: this function takes 1 argument but 2 arguments were supplied | ||
--> $DIR/args-instead-of-tuple.rs:16:5 | ||
| | ||
LL | with_generic(3, 4); | ||
| ^^^^^^^^^^^^ - - supplied 2 arguments | ||
| | ||
note: function defined here | ||
--> $DIR/args-instead-of-tuple.rs:22:4 | ||
| | ||
LL | fn with_generic<T: Copy + Send>((a, b): (i32, T)) { | ||
| ^^^^^^^^^^^^ ---------------- | ||
help: use parentheses to construct a tuple | ||
| | ||
LL | with_generic((3, 4)); | ||
| + + | ||
|
||
error[E0061]: this function takes 1 argument but 2 arguments were supplied | ||
--> $DIR/args-instead-of-tuple.rs:25:9 | ||
| | ||
LL | with_generic(a, b); | ||
| ^^^^^^^^^^^^ - - supplied 2 arguments | ||
| | ||
note: function defined here | ||
--> $DIR/args-instead-of-tuple.rs:22:4 | ||
| | ||
LL | fn with_generic<T: Copy + Send>((a, b): (i32, T)) { | ||
| ^^^^^^^^^^^^ ---------------- | ||
help: use parentheses to construct a tuple | ||
| | ||
LL | with_generic((a, b)); | ||
| + + | ||
|
||
error: aborting due to 6 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0061`. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is essentially duplicated on line 217.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess this is because we need it for the call to
suggested_tuple_wrap
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this whole (pre-existing) function could be cleaned up a lot in general. Like, why does this
if
(and the one on L217) even need to exist? And why is an empty list used as a sentinel value?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm thinking of trying to refactor it myself.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that this gets changed quite a bit in #92364
Changing empty list as a sentinel is something orthogonal that I've thought about and worth doing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, the empty list led to a lot of confusion during the development of this too - like you say, it being used as a sentinel could be made more explicit (or even removed).