forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#89791 - matthiaskrgr:rollup-1lhxh5b, r=matthi…
…askrgr Rollup of 9 pull requests Successful merges: - rust-lang#89471 (Use Ancestory to check default fn in const impl instead of comparing idents) - rust-lang#89643 (Fix inherent impl overlap check.) - rust-lang#89651 (Add `Poll::ready` and revert stabilization of `task::ready!`) - rust-lang#89675 (Re-use TypeChecker instead of passing around some of its fields ) - rust-lang#89710 (Add long explanation for error E0482) - rust-lang#89756 (Greatly reduce amount of debuginfo compiled for bootstrap itself) - rust-lang#89760 (Remove hack ignoring unused attributes for stage 0 std) - rust-lang#89772 (Fix function-names test for GDB 10.1) - rust-lang#89785 (Fix ICE when compiling nightly std/rustc on beta compiler) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
22 changed files
with
385 additions
and
183 deletions.
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
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
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,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>( | ||
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 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
Oops, something went wrong.