2244f326e6
Update `rustc-ap-*` crates to 486.0.0.
21 lines
265 B
Rust
21 lines
265 B
Rust
// rustfmt-edition: 2018
|
|
|
|
async fn bar() -> Result<(), ()> {
|
|
Ok(())
|
|
}
|
|
|
|
pub async fn baz() -> Result<(), ()> {
|
|
Ok(())
|
|
}
|
|
|
|
async unsafe fn foo() {
|
|
async move { Ok(()) }
|
|
}
|
|
|
|
async unsafe fn rust() {
|
|
async move {
|
|
// comment
|
|
Ok(())
|
|
}
|
|
}
|