rust/tests/target/async_fn.rs

21 lines
265 B
Rust
Raw Normal View History

// rustfmt-edition: 2018
2018-07-29 10:45:31 -05:00
async fn bar() -> Result<(), ()> {
Ok(())
}
pub async fn baz() -> Result<(), ()> {
Ok(())
}
async unsafe fn foo() {
2018-07-29 10:45:31 -05:00
async move { Ok(()) }
}
2018-07-29 19:20:11 -05:00
async unsafe fn rust() {
2018-07-29 19:20:11 -05:00
async move {
// comment
Ok(())
}
}