blob: f6c5f5e1c9ac93812125aac89ce782e49eeebde2 [file] [log] [blame]
// 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(())
}
}