rust/tests/target/async_fn.rs
Benjamin Brittain 46b241004d fix nits
2018-07-29 17:20:21 -07:00

20 lines
272 B
Rust

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