blob: 493d53d2532f2fa399a4525cf9907800780dd19b (
plain)
1
2
3
4
5
6
7
8
9
10
|
//@ 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() {}
|