blob: 493d53d2532f2fa399a4525cf9907800780dd19b [file] [log] [blame]
//@ edition:2018
extern "C" {
async fn L() { //~ ERROR: incorrect function inside `extern` block
//~^ ERROR: functions in `extern` blocks cannot have `async` qualifier
async fn M() {}
}
}
fn main() {}