mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-12 20:16:49 +00:00
14 lines
187 B
Rust
14 lines
187 B
Rust
// rustfmt-edition: Edition2018
|
|
|
|
async fn bar() -> Result<(), ()> {
|
|
Ok(())
|
|
}
|
|
|
|
pub async fn baz() -> Result<(), ()> {
|
|
Ok(())
|
|
}
|
|
|
|
unsafe async fn foo() {
|
|
async move { Ok(()) }
|
|
}
|