9 lines
210 B
Rust
9 lines
210 B
Rust
extern "C" {
|
|
const fn foo();
|
|
//~^ ERROR functions in `extern` blocks cannot have qualifiers
|
|
const unsafe fn bar();
|
|
//~^ ERROR functions in `extern` blocks cannot have qualifiers
|
|
}
|
|
|
|
fn main() {}
|