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; }