mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-20 01:50:40 +00:00
Normalize closure instance before eagerly monomorphizing it We were monomorphizing two versions of the closure (or in the original issue, coroutine) -- one with normalized captures and one with unnormalized captures. This led to a symbol collision. Fixes #137009 r? `@saethlin` or reassign