rustc/tests/ui/extern/issue-95829.rs
2023-08-02 10:33:26 +02:00

11 lines
215 B
Rust

// 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() {}