1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
use tokio::pin; async fn one() {} async fn two() {} #[tokio::test] async fn multi_pin() { pin! { let f1 = one(); let f2 = two(); } (&mut f1).await; (&mut f2).await; }