mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-30 13:06:28 +03:00
41ab1f8af7
delegation: visit path under elided-infer lifetime rib Up to this moment we processed delegation path under `LifetimeRibKind::Generics` which is not correct as we are processing generic args of a future call, not generic params. In this PR we visit path under `LifetimeRibKind::Elided(LifetimeRes::Infer)`. Fixes rust-lang/rust#156342. Part of rust-lang/rust#118212. r? @petrochenkov