mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-15 12:39:31 +03:00
433180e0cb
Fix stray trait mismatch in `resolve_associated_item` for `AsyncFn` Copy-paste error meant that we were calling `fn_trait_kind_from_def_id` instead of `async_fn_trait_kind_from_def_id`. But turns out we don't even need to do that, since we already matched the trait def id above. Fixes #121306 r? oli-obk