Files
rust/tests/ui/extern/issue-95829.rs

11 lines
227 B
Rust
Raw Normal View History

//@ edition:2018
2024-10-31 11:39:45 +01:00
extern "C" {
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
async fn M() {}
}
}
fn main() {}