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

16 lines
199 B
Rust

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