about summary refs log tree commit diff
path: root/library/std/src/sys/unix/stack_overflow.rs
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2023-11-14 22:36:05 +0000
committerEsteban Küber <esteban@kuber.com.ar>2023-11-20 23:44:37 +0000
commit5fce361d589c870d5fd2f29ff9f0cd3b6485b5be (patch)
treea0bba4e4d69b63c365a82cb9ea4baa69a7d8ba56 /library/std/src/sys/unix/stack_overflow.rs
parentb7a23bc08b2cc9b1ddfac18ea2019d5150d93e0e (diff)
downloadrust-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