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