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