blob: cc7e89e16cb2b99f7427754444c34ff5d6ca3036 [file] [log] [blame]
//@ 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`
fn main() {}