rust/tests/source/async_fn.rs

16 lines
199 B
Rust
Raw Normal View History

2018-07-29 08:45:31 -07:00
// rustfmt-edition: Edition2018
async fn bar() -> Result<(), ()> {
Ok(())
}
pub async fn baz() -> Result<(), ()> {
Ok(())
}
unsafe async fn foo() {
async move {
Ok(())
}
}