summaryrefslogtreecommitdiffstats
path: root/tokio/tests/macros_pin.rs
blob: da6e0be6ed2d8685ff6df06a7e66e9a2b17ab4b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
async fn one() {}
async fn two() {}

#[tokio::test]
async fn multi_pin() {
    tokio::pin! {
        let f1 = one();
        let f2 = two();
    }

    (&mut f1).await;
    (&mut f2).await;
}