rust/tests/mir-opt/building/async_await.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
513 B
Rust
Raw Normal View History

// skip-filecheck
2023-10-19 16:46:28 -05:00
// This test makes sure that the coroutine MIR pass eliminates all calls to
// `get_context`, and that the MIR argument type for an async fn and all locals
// related to `yield` are `&mut Context`, and its return type is `Poll`.
//@ edition:2018
//@ compile-flags: -C panic=abort
#![crate_type = "lib"]
2023-10-19 16:46:28 -05:00
// EMIT_MIR async_await.a-{closure#0}.coroutine_resume.0.mir
async fn a() {}
2023-10-19 16:46:28 -05:00
// EMIT_MIR async_await.b-{closure#0}.coroutine_resume.0.mir
pub async fn b() {
a().await;
a().await
}