mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
14 lines
269 B
Rust
14 lines
269 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`
|
|
|
|
fn main() {}
|