-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Account for unbounded type param receiver in suggestions #120396
Merged
bors
merged 3 commits into
rust-lang:master
from
estebank:method-on-unbounded-type-param
Feb 7, 2024
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 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,15 @@ | ||
fn f<T>(a: T, b: T) -> std::cmp::Ordering { | ||
a.cmp(&b) //~ ERROR E0599 | ||
} | ||
fn g<T>(a: T, b: T) -> std::cmp::Ordering { | ||
(&a).cmp(&b) //~ ERROR E0599 | ||
} | ||
fn h<T>(a: &T, b: T) -> std::cmp::Ordering { | ||
a.cmp(&b) //~ ERROR E0599 | ||
} | ||
trait T {} | ||
impl<X: std::cmp::Ord> T for X {} | ||
fn main() { | ||
let x: Box<dyn T> = Box::new(0); | ||
x.cmp(&x); //~ ERROR E0599 | ||
} |
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,74 @@ | ||
error[E0599]: no method named `cmp` found for type parameter `T` in the current scope | ||
--> $DIR/method-on-unbounded-type-param.rs:2:7 | ||
| | ||
LL | fn f<T>(a: T, b: T) -> std::cmp::Ordering { | ||
| - method `cmp` not found for this type parameter | ||
LL | a.cmp(&b) | ||
| ^^^ method cannot be called on `T` due to unsatisfied trait bounds | ||
| | ||
= help: items from traits can only be used if the type parameter is bounded by the trait | ||
help: the following traits define an item `cmp`, perhaps you need to restrict type parameter `T` with one of them: | ||
| | ||
LL | fn f<T: Ord>(a: T, b: T) -> std::cmp::Ordering { | ||
| +++++ | ||
LL | fn f<T: Iterator>(a: T, b: T) -> std::cmp::Ordering { | ||
| ++++++++++ | ||
|
||
error[E0599]: the method `cmp` exists for reference `&T`, but its trait bounds were not satisfied | ||
--> $DIR/method-on-unbounded-type-param.rs:5:10 | ||
| | ||
LL | (&a).cmp(&b) | ||
| ^^^ method cannot be called on `&T` due to unsatisfied trait bounds | ||
| | ||
= note: the following trait bounds were not satisfied: | ||
`T: Ord` | ||
which is required by `&T: Ord` | ||
`&T: Iterator` | ||
which is required by `&mut &T: Iterator` | ||
`T: Iterator` | ||
which is required by `&mut T: Iterator` | ||
help: consider restricting the type parameters to satisfy the trait bounds | ||
| | ||
LL | fn g<T>(a: T, b: T) -> std::cmp::Ordering where T: Iterator, T: Ord { | ||
| +++++++++++++++++++++++++ | ||
|
||
error[E0599]: the method `cmp` exists for reference `&T`, but its trait bounds were not satisfied | ||
--> $DIR/method-on-unbounded-type-param.rs:8:7 | ||
| | ||
LL | a.cmp(&b) | ||
| ^^^ method cannot be called on `&T` due to unsatisfied trait bounds | ||
| | ||
= note: the following trait bounds were not satisfied: | ||
`T: Ord` | ||
which is required by `&T: Ord` | ||
`&T: Iterator` | ||
which is required by `&mut &T: Iterator` | ||
`T: Iterator` | ||
which is required by `&mut T: Iterator` | ||
help: consider restricting the type parameters to satisfy the trait bounds | ||
| | ||
LL | fn h<T>(a: &T, b: T) -> std::cmp::Ordering where T: Iterator, T: Ord { | ||
| +++++++++++++++++++++++++ | ||
|
||
error[E0599]: the method `cmp` exists for struct `Box<dyn T>`, but its trait bounds were not satisfied | ||
--> $DIR/method-on-unbounded-type-param.rs:14:7 | ||
| | ||
LL | trait T {} | ||
| ------- doesn't satisfy `dyn T: Iterator` or `dyn T: Ord` | ||
... | ||
LL | x.cmp(&x); | ||
| ^^^ method cannot be called on `Box<dyn T>` due to unsatisfied trait bounds | ||
| | ||
= note: the following trait bounds were not satisfied: | ||
`dyn T: Iterator` | ||
which is required by `Box<dyn T>: Iterator` | ||
`dyn T: Ord` | ||
which is required by `Box<dyn T>: Ord` | ||
`Box<dyn T>: Iterator` | ||
which is required by `&mut Box<dyn T>: Iterator` | ||
`dyn T: Iterator` | ||
which is required by `&mut dyn T: Iterator` | ||
|
||
error: aborting due to 4 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0599`. |
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.
We need to realize that
T: Ord
andT: Iterator
are not both needed, but that's a separate issue to what I was addressing here.