-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Add long explanation for error E0482 #89710
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
3 commits
Select commit
Hold shift + click to select a range
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,73 @@ | ||
A lifetime of a returned value does not outlive the function call. | ||
|
||
Erroneous code example: | ||
|
||
```compile_fail,E0482 | ||
fn prefix<'a>( | ||
words: impl Iterator<Item = &'a str> | ||
) -> impl Iterator<Item = String> { // error! | ||
words.map(|v| format!("foo-{}", v)) | ||
} | ||
``` | ||
|
||
To fix this error, make the lifetime of the returned value explicit: | ||
|
||
``` | ||
fn prefix<'a>( | ||
sireliah marked this conversation as resolved.
Show resolved
Hide resolved
|
||
words: impl Iterator<Item = &'a str> + 'a | ||
) -> impl Iterator<Item = String> + 'a { // ok! | ||
words.map(|v| format!("foo-{}", v)) | ||
} | ||
``` | ||
|
||
The [`impl Trait`] feature in this example uses an implicit `'static` lifetime | ||
restriction in the returned type. However the type implementing the `Iterator` | ||
passed to the function lives just as long as `'a`, which is not long enough. | ||
|
||
The solution involves adding lifetime bound to both function argument and | ||
the return value to make sure that the values inside the iterator | ||
are not dropped when the function goes out of the scope. | ||
|
||
An alternative solution would be to guarantee that the `Item` references | ||
in the iterator are alive for the whole lifetime of the program. | ||
|
||
``` | ||
fn prefix( | ||
words: impl Iterator<Item = &'static str> | ||
) -> impl Iterator<Item = String> { // ok! | ||
words.map(|v| format!("foo-{}", v)) | ||
} | ||
``` | ||
|
||
A similar lifetime problem might arise when returning closures: | ||
|
||
```compile_fail,E0482 | ||
fn foo( | ||
x: &mut Vec<i32> | ||
) -> impl FnMut(&mut Vec<i32>) -> &[i32] { // error! | ||
|y| { | ||
y.append(x); | ||
y | ||
} | ||
} | ||
``` | ||
|
||
Analogically, a solution here is to use explicit return lifetime | ||
and move the ownership of the variable to the closure. | ||
|
||
``` | ||
fn foo<'a>( | ||
x: &'a mut Vec<i32> | ||
) -> impl FnMut(&mut Vec<i32>) -> &[i32] + 'a { // ok! | ||
move |y| { | ||
y.append(x); | ||
y | ||
} | ||
} | ||
``` | ||
|
||
To better understand the lifetime treatment in the [`impl Trait`], | ||
please see the [RFC 1951]. | ||
|
||
[`impl Trait`]: https://doc.rust-lang.org/reference/types/impl-trait.html | ||
[RFC 1951]: https://rust-lang.github.io/rfcs/1951-expand-impl-trait.html |
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ use regex::Regex; | |
// A few of those error codes can't be tested but all the others can and *should* be tested! | ||
const EXEMPTED_FROM_TEST: &[&str] = &[ | ||
"E0227", "E0279", "E0280", "E0313", "E0377", "E0461", "E0462", "E0464", "E0465", "E0476", | ||
"E0482", "E0514", "E0519", "E0523", "E0554", "E0640", "E0717", "E0729", | ||
"E0514", "E0519", "E0523", "E0554", "E0640", "E0717", "E0729", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice! |
||
]; | ||
|
||
// Some error codes don't have any tests apparently... | ||
|
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.