diff options
| author | Esteban Küber <esteban@kuber.com.ar> | 2023-11-14 22:36:05 +0000 |
|---|---|---|
| committer | Esteban Küber <esteban@kuber.com.ar> | 2023-11-20 23:44:37 +0000 |
| commit | 5fce361d589c870d5fd2f29ff9f0cd3b6485b5be (patch) | |
| tree | a0bba4e4d69b63c365a82cb9ea4baa69a7d8ba56 /library/std/src/sys/unix/stack_overflow.rs | |
| parent | b7a23bc08b2cc9b1ddfac18ea2019d5150d93e0e (diff) | |
| download | rust-5fce361d589c870d5fd2f29ff9f0cd3b6485b5be.tar.gz rust-5fce361d589c870d5fd2f29ff9f0cd3b6485b5be.zip | |
Account for impl Trait in lifetime suggestion
When encountering
```rust
fn g(mut x: impl Iterator<Item = &()>) -> Option<&()> { /* */ }
```
Suggest
```rust
fn g<'a>(mut x: impl Iterator<Item = &'a ()>) -> Option<&'a ()> { /* */ }
```
Diffstat (limited to 'library/std/src/sys/unix/stack_overflow.rs')
0 files changed, 0 insertions, 0 deletions
