mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-05 13:13:40 +00:00
10 lines
277 B
Rust
10 lines
277 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
|
|
//~| ERROR functions in `extern` blocks cannot have qualifiers
|
|
}
|
|
|
|
fn main() {}
|