summaryrefslogtreecommitdiffstats
path: root/src/test/ui/async-await/move-part-await-return-rest-tuple.rs
blob: 7b958b98b414f4d2f6b552619c1545fdcc7cf76c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// build-pass
// edition:2018
// compile-flags: --crate-type lib

async fn move_part_await_return_rest_tuple() -> Vec<usize> {
    let x = (vec![3], vec![4, 4]);
    drop(x.1);
    echo(x.0[0]).await;
    x.0
}

async fn echo(x: usize) -> usize { x }