DEBSOURCES
Skip Quicknav
sources / rust-no-panic / 0.1.32-1 / tests / ui / async-fn.rs
12345678910
use no_panic::no_panic; #[no_panic] async fn f() { g().await; } async fn g() {} fn main() {}