rust/tests/ui/consts/const-extern-fn/const-extern-fn-call-extern-fn.rs
2024-12-23 22:15:32 +00:00

21 lines
333 B
Rust

extern "C" {
fn regular_in_block();
}
const extern "C" fn bar() {
unsafe {
regular_in_block();
//~^ ERROR: cannot call non-const function
}
}
extern "C" fn regular() {}
const extern "C" fn foo() {
unsafe {
regular();
//~^ ERROR: cannot call non-const function
}
}
fn main() {}