rust/src/test/ui/async-await/no-unsafe-async.rs
2019-06-29 21:38:26 +02:00

12 lines
244 B
Rust

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