2020-01-19 11:53:25 -06:00
|
|
|
// Checks that we report ABI mismatches for "const extern fn"
|
|
|
|
//@ compile-flags: -Z unleash-the-miri-inside-of-you
|
|
|
|
|
|
|
|
#![feature(const_extern_fn)]
|
|
|
|
|
|
|
|
const extern "C" fn c_fn() {}
|
|
|
|
|
|
|
|
const fn call_rust_fn(my_fn: extern "Rust" fn()) {
|
2020-04-19 05:32:21 -05:00
|
|
|
my_fn();
|
2020-04-29 02:53:22 -05:00
|
|
|
//~^ ERROR could not evaluate static initializer
|
2021-12-01 20:37:23 -06:00
|
|
|
//~| NOTE calling a function with calling convention C using calling convention Rust
|
2020-04-19 05:32:21 -05:00
|
|
|
//~| NOTE inside `call_rust_fn`
|
2020-01-19 11:53:25 -06:00
|
|
|
}
|
|
|
|
|
2020-04-19 05:32:21 -05:00
|
|
|
static VAL: () = call_rust_fn(unsafe { std::mem::transmute(c_fn as extern "C" fn()) });
|
2020-05-03 07:23:08 -05:00
|
|
|
//~^ NOTE inside `VAL`
|
2020-01-19 11:53:25 -06:00
|
|
|
|
|
|
|
fn main() {}
|