2024-02-16 20:02:50 +00:00
|
|
|
//@ edition:2018
|
2022-07-17 08:50:41 +09:00
|
|
|
|
|
|
|
|
extern {
|
|
|
|
|
async fn L() { //~ ERROR: incorrect function inside `extern` block
|
2024-10-11 11:30:03 -04:00
|
|
|
//~^ ERROR: functions in `extern` blocks cannot have `async` qualifier
|
2022-07-17 08:50:41 +09:00
|
|
|
async fn M() {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|