about summary refs log tree commit diff
path: root/tests/ui/async-await/issue-64391.rs
blob: 29f1da10deda565d64f8254cb36414ba7da99b5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Regression test for Issue #64391. The goal here is that this
// function compiles. In the past, due to incorrect drop order for
// temporaries in the tail expression, we failed to compile this
// example. The drop order itself is directly tested in
// `drop-order/drop-order-for-temporary-in-tail-return-expr.rs`.
//
//@ check-pass
//@ edition:2018

async fn add(x: u32, y: u32) -> u32 {
    async { x + y }.await
}

fn main() { }