2020-09-01 21:12:52 +00:00
|
|
|
extern "C" {
|
2017-06-13 19:37:13 +00:00
|
|
|
fn printf(c: *const i8, ...);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
unsafe {
|
|
|
|
printf(::std::ptr::null(), 0f32);
|
2018-01-22 16:35:21 +00:00
|
|
|
//~^ ERROR can't pass `f32` to variadic function
|
|
|
|
//~| HELP cast the value to `c_double`
|
2017-06-13 19:37:13 +00:00
|
|
|
printf(::std::ptr::null(), 0i8);
|
2018-01-22 16:35:21 +00:00
|
|
|
//~^ ERROR can't pass `i8` to variadic function
|
|
|
|
//~| HELP cast the value to `c_int`
|
2017-06-13 19:37:13 +00:00
|
|
|
printf(::std::ptr::null(), 0i16);
|
2018-01-22 16:35:21 +00:00
|
|
|
//~^ ERROR can't pass `i16` to variadic function
|
|
|
|
//~| HELP cast the value to `c_int`
|
2017-06-13 19:37:13 +00:00
|
|
|
printf(::std::ptr::null(), 0u8);
|
2018-01-22 16:35:21 +00:00
|
|
|
//~^ ERROR can't pass `u8` to variadic function
|
|
|
|
//~| HELP cast the value to `c_uint`
|
2017-06-13 19:37:13 +00:00
|
|
|
printf(::std::ptr::null(), 0u16);
|
2018-01-22 16:35:21 +00:00
|
|
|
//~^ ERROR can't pass `u16` to variadic function
|
|
|
|
//~| HELP cast the value to `c_uint`
|
2017-06-13 19:37:13 +00:00
|
|
|
printf(::std::ptr::null(), printf);
|
2024-11-27 14:37:27 +00:00
|
|
|
//~^ ERROR can't pass a function item to a variadic function
|
|
|
|
//~| HELP a function item is zero-sized and needs to be cast into a function pointer to be used in FFI
|
|
|
|
//~| HELP use a function pointer instead
|
2017-06-13 19:37:13 +00:00
|
|
|
}
|
|
|
|
}
|