-
Notifications
You must be signed in to change notification settings - Fork 14k
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
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,68 @@ | ||||||
| A lifetime of return value does not outlive the function call. | ||||||
|
|
||||||
| Erroneous code example: | ||||||
|
|
||||||
| ```compile_fail,E0482 | ||||||
| fn prefix<'a>( | ||||||
sireliah marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| words: impl Iterator<Item = &'a str> | ||||||
| ) -> impl Iterator<Item = String> { | ||||||
| words.map(|v| format!("foo-{}", v)) | ||||||
| } | ||||||
| ``` | ||||||
|
|
||||||
| To fix this error, make the lifetime of the returned value explicit. | ||||||
sireliah marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||
|
|
||||||
| ``` | ||||||
| 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 { | ||||||
| words.map(|v| format!("foo-{}", v)) | ||||||
| } | ||||||
| ``` | ||||||
|
|
||||||
| [`impl Trait`] feature in return type have implicit `'static` lifetime | ||||||
|
||||||
| [`impl Trait`] feature in return type have implicit `'static` lifetime | |
| The [`impl Trait`] feature uses an implicit `'static` lifetime restriction in the returned type |
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 fixed that part and split the sentence in two. I also made it sound different, because before the explanation sounded like all -> impl Trait structures force 'static lifetime in all cases (like Box<Trait>), which is not true according to RFC I believe.
Those can be different lifetimes and only my example required 'static. Please correct me if I'm wrong @GuillaumeGomez or @nagisa.
sireliah marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
sireliah marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
sireliah marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
sireliah marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
sireliah marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
sireliah marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
| 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", | ||
|
Member
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... | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.