File: async-fn.rs

package info (click to toggle)
rust-no-panic 0.1.32-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 164 kB
  • sloc: makefile: 2
file content (10 lines) | stat: -rw-r--r-- 100 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
use no_panic::no_panic;

#[no_panic]
async fn f() {
    g().await;
}

async fn g() {}

fn main() {}