mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-29 11:51:31 +03:00
020d7af949
Fix Async Generator ABI This change was missed when making async generators implement `Future` directly. It did not cause any problems in codegen so far, as `GeneratorState<(), Output>` happens to have the same ABI as `Poll<Output>`.