1 use no_panic::no_panic;
2 
3 #[no_panic]
f()4 async fn f() {
5     g().await;
6 }
7 
g()8 async fn g() {}
9 
main()10 fn main() {}
11