rust/src/test/ui/error-codes/E0617.rs

29 lines
1.1 KiB
Rust
Raw Normal View History

2017-06-13 14:37:13 -05:00
// ignore-tidy-linelength
extern {
fn printf(c: *const i8, ...);
}
fn main() {
unsafe {
printf(::std::ptr::null(), 0f32);
2018-01-22 10:35:21 -06:00
//~^ ERROR can't pass `f32` to variadic function
//~| HELP cast the value to `c_double`
2017-06-13 14:37:13 -05:00
printf(::std::ptr::null(), 0i8);
2018-01-22 10:35:21 -06:00
//~^ ERROR can't pass `i8` to variadic function
//~| HELP cast the value to `c_int`
2017-06-13 14:37:13 -05:00
printf(::std::ptr::null(), 0i16);
2018-01-22 10:35:21 -06:00
//~^ ERROR can't pass `i16` to variadic function
//~| HELP cast the value to `c_int`
2017-06-13 14:37:13 -05:00
printf(::std::ptr::null(), 0u8);
2018-01-22 10:35:21 -06:00
//~^ ERROR can't pass `u8` to variadic function
//~| HELP cast the value to `c_uint`
2017-06-13 14:37:13 -05:00
printf(::std::ptr::null(), 0u16);
2018-01-22 10:35:21 -06:00
//~^ ERROR can't pass `u16` to variadic function
//~| HELP cast the value to `c_uint`
2017-06-13 14:37:13 -05:00
printf(::std::ptr::null(), printf);
//~^ ERROR can't pass `for<'r> unsafe extern "C" fn(*const i8, std::ffi::VaListImpl<'r>, ...) {printf}` to variadic function
//~| HELP cast the value to `for<'r> unsafe extern "C" fn(*const i8, std::ffi::VaListImpl<'r>, ...)`
2017-06-13 14:37:13 -05:00
}
}