rust/tests/target/async_fn.rs
2018-07-29 08:55:36 -07:00

14 lines
187 B
Rust

// rustfmt-edition: Edition2018
async fn bar() -> Result<(), ()> {
Ok(())
}
pub async fn baz() -> Result<(), ()> {
Ok(())
}
unsafe async fn foo() {
async move { Ok(()) }
}