1 2 3 4 5 6
fn main() { let fut = async { 1 }; let _ = async move { one_assert::assert!(fut.await); }; }