rust/tests/ui/async-await/no-unsafe-async.rs
2023-01-11 09:32:08 +00:00

12 lines
254 B
Rust

// edition:2018
struct S;
impl S {
#[cfg(FALSE)]
unsafe async fn g() {} //~ ERROR expected one of `extern` or `fn`, found keyword `async`
}
#[cfg(FALSE)]
unsafe async fn f() {} //~ ERROR expected one of `extern` or `fn`, found keyword `async`