rust/tests/source/async_fn.rs

22 lines
269 B
Rust
Raw Normal View History

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