mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-09 18:46:50 +00:00
21 lines
265 B
Rust
21 lines
265 B
Rust
// rustfmt-edition: 2018
|
|
|
|
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(())
|
|
}
|
|
}
|