-
-
Notifications
You must be signed in to change notification settings - Fork 15.4k
fix ICE in suggest_add_reference_to_arg for non-callable items
#160628
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
Merged
+86
−2
Merged
Changes from all commits
Commits
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 hidden or 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 hidden or 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,14 @@ | ||
| // A struct literal that's missing fields shouldn't ICE when checking the fn sig. | ||
|
|
||
| trait Context {} | ||
| struct Wrapper<C: Context + 'static> { | ||
| container: &'static C, | ||
| } | ||
| fn foobar(_: Wrapper<()>) { //~ ERROR the trait bound `(): Context` is not satisfied | ||
| foobar(Wrapper { /* missing */ }) | ||
| //~^ ERROR the trait bound `(): Context` is not satisfied | ||
| //~^^ ERROR missing field `container` in initializer of `Wrapper<_>` | ||
| //~^^^ ERROR the trait bound `(): Context` is not satisfied | ||
| } | ||
|
|
||
| fn main() {} |
This file contains hidden or 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,61 @@ | ||
| error[E0277]: the trait bound `(): Context` is not satisfied | ||
| --> $DIR/ice-missing-field-fn-sig.rs:7:14 | ||
| | | ||
| LL | fn foobar(_: Wrapper<()>) { | ||
| | ^^^^^^^^^^^ the trait `Context` is not implemented for `()` | ||
| | | ||
| help: this trait has no implementations, consider adding one | ||
| --> $DIR/ice-missing-field-fn-sig.rs:3:1 | ||
| | | ||
| LL | trait Context {} | ||
| | ^^^^^^^^^^^^^ | ||
| note: required by a bound in `Wrapper` | ||
| --> $DIR/ice-missing-field-fn-sig.rs:4:19 | ||
| | | ||
| LL | struct Wrapper<C: Context + 'static> { | ||
| | ^^^^^^^ required by this bound in `Wrapper` | ||
|
|
||
| error[E0277]: the trait bound `(): Context` is not satisfied | ||
| --> $DIR/ice-missing-field-fn-sig.rs:8:12 | ||
| | | ||
| LL | foobar(Wrapper { /* missing */ }) | ||
| | ^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Context` is not implemented for `()` | ||
| | | ||
| help: this trait has no implementations, consider adding one | ||
| --> $DIR/ice-missing-field-fn-sig.rs:3:1 | ||
| | | ||
| LL | trait Context {} | ||
| | ^^^^^^^^^^^^^ | ||
| note: required by a bound in `Wrapper` | ||
| --> $DIR/ice-missing-field-fn-sig.rs:4:19 | ||
| | | ||
| LL | struct Wrapper<C: Context + 'static> { | ||
| | ^^^^^^^ required by this bound in `Wrapper` | ||
|
|
||
| error[E0063]: missing field `container` in initializer of `Wrapper<_>` | ||
| --> $DIR/ice-missing-field-fn-sig.rs:8:12 | ||
| | | ||
| LL | foobar(Wrapper { /* missing */ }) | ||
| | ^^^^^^^ missing `container` | ||
|
|
||
| error[E0277]: the trait bound `(): Context` is not satisfied | ||
| --> $DIR/ice-missing-field-fn-sig.rs:8:12 | ||
| | | ||
| LL | foobar(Wrapper { /* missing */ }) | ||
| | ^^^^^^^ the trait `Context` is not implemented for `()` | ||
| | | ||
| help: this trait has no implementations, consider adding one | ||
| --> $DIR/ice-missing-field-fn-sig.rs:3:1 | ||
| | | ||
| LL | trait Context {} | ||
| | ^^^^^^^^^^^^^ | ||
| note: required by a bound in `Wrapper` | ||
| --> $DIR/ice-missing-field-fn-sig.rs:4:19 | ||
| | | ||
| LL | struct Wrapper<C: Context + 'static> { | ||
| | ^^^^^^^ required by this bound in `Wrapper` | ||
|
|
||
| error: aborting due to 4 previous errors | ||
|
|
||
| Some errors have detailed explanations: E0063, E0277. | ||
| For more information about an error, try `rustc --explain E0063`. |
Oops, something went wrong.
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.
It would be good to have a test case for this change.
I think the current UI test only checks the struct case.
It's slightly odd that the method impl doesn't have a fn_sig, are you sure about that?
(This is a genuine question, because I don't know for sure.)
Uh oh!
There was an error while loading. Please reload this page.
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.
the
def_idpoints to the clause owner (like an impl/struct) not the callee.tcx.fn_sigpanics on those, andis_fn_like()doesnt work either since closures breakfn_sigtoo since the diagnostic needsfn_sigto map params to args, guarding and skipping non-callables was the way out.