-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Add filtering option to rustc_on_unimplemented
and reword Iterator
E0277 errors
#54946
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
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
cd7c818
Add more targetting filters for arrays to rustc_on_unimplemented
estebank 5b0223e
Reword `rustc_on_unimplemented` errors for `Iterator`
estebank 330b7ed
Add regression test (#22872)
estebank 2305d02
Add tests for handled cases
estebank a0fd68b
fix tidy
estebank c71228e
review comments
estebank 5beeb53
Reword Range*/[Range*]: Iterator E0277 messages
estebank def0f54
Change Scalar to numeric cast
estebank 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
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
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
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
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,23 @@ | ||
trait Wrap<'b> { | ||
fn foo(&'b mut self); | ||
} | ||
|
||
struct Wrapper<P>(P); | ||
|
||
impl<'b, P> Wrap<'b> for Wrapper<P> | ||
where P: Process<'b>, | ||
<P as Process<'b>>::Item: Iterator { | ||
fn foo(&mut self) {} | ||
} | ||
|
||
|
||
pub trait Process<'a> { | ||
type Item; | ||
fn bar(&'a self); | ||
} | ||
|
||
fn push_process<P>(process: P) where P: Process<'static> { | ||
let _: Box<for<'b> Wrap<'b>> = Box::new(Wrapper(process)); | ||
} | ||
|
||
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,23 @@ | ||
error[E0277]: the trait bound `for<'b> P: Process<'b>` is not satisfied | ||
--> $DIR/issue-22872.rs:20:36 | ||
| | ||
LL | let _: Box<for<'b> Wrap<'b>> = Box::new(Wrapper(process)); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `for<'b> Process<'b>` is not implemented for `P` | ||
| | ||
= help: consider adding a `where for<'b> P: Process<'b>` bound | ||
= note: required because of the requirements on the impl of `for<'b> Wrap<'b>` for `Wrapper<P>` | ||
= note: required for the cast to the object type `dyn for<'b> Wrap<'b>` | ||
|
||
error[E0277]: `<P as Process<'b>>::Item` is not an iterator | ||
--> $DIR/issue-22872.rs:20:36 | ||
| | ||
LL | let _: Box<for<'b> Wrap<'b>> = Box::new(Wrapper(process)); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ `<P as Process<'b>>::Item` is not an iterator | ||
| | ||
= help: the trait `for<'b> std::iter::Iterator` is not implemented for `<P as Process<'b>>::Item` | ||
= note: required because of the requirements on the impl of `for<'b> Wrap<'b>` for `Wrapper<P>` | ||
= note: required for the cast to the object type `dyn for<'b> Wrap<'b>` | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0277`. |
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
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
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 @@ | ||
fn main() { | ||
for _ in [0..1] {} | ||
for _ in [0..=1] {} | ||
for _ in [0..] {} | ||
for _ in [..1] {} | ||
for _ in [..=1] {} | ||
let start = 0; | ||
let end = 0; | ||
for _ in [start..end] {} | ||
let array_of_range = [start..end]; | ||
for _ in array_of_range {} | ||
for _ in [0..1, 2..3] {} | ||
for _ in [0..=1] {} | ||
} |
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.
Uh oh!
There was an error while loading. Please reload this page.