2018-02-07 19:35:35 -08:00
|
|
|
error[E0617]: can't pass `f32` to variadic function
|
2019-08-10 14:38:17 +03:00
|
|
|
--> $DIR/E0617.rs:7:36
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | printf(::std::ptr::null(), 0f32);
|
2024-11-29 11:15:15 +01:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
|
|
help: cast the value to `c_double`
|
|
|
|
|
|
|
|
|
|
|
LL | printf(::std::ptr::null(), 0f32 as c_double);
|
|
|
|
|
| +++++++++++
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
|
|
|
error[E0617]: can't pass `i8` to variadic function
|
2019-08-10 14:38:17 +03:00
|
|
|
--> $DIR/E0617.rs:10:36
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | printf(::std::ptr::null(), 0i8);
|
2024-11-29 11:15:15 +01:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
|
|
help: cast the value to `c_int`
|
|
|
|
|
|
|
|
|
|
|
LL | printf(::std::ptr::null(), 0i8 as c_int);
|
|
|
|
|
| ++++++++
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
|
|
|
error[E0617]: can't pass `i16` to variadic function
|
2019-08-10 14:38:17 +03:00
|
|
|
--> $DIR/E0617.rs:13:36
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | printf(::std::ptr::null(), 0i16);
|
2024-11-29 11:15:15 +01:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
|
|
help: cast the value to `c_int`
|
|
|
|
|
|
|
|
|
|
|
LL | printf(::std::ptr::null(), 0i16 as c_int);
|
|
|
|
|
| ++++++++
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
|
|
|
error[E0617]: can't pass `u8` to variadic function
|
2019-08-10 14:38:17 +03:00
|
|
|
--> $DIR/E0617.rs:16:36
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | printf(::std::ptr::null(), 0u8);
|
2024-11-29 11:15:15 +01:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
|
|
help: cast the value to `c_uint`
|
|
|
|
|
|
|
|
|
|
|
LL | printf(::std::ptr::null(), 0u8 as c_uint);
|
|
|
|
|
| +++++++++
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
|
|
|
error[E0617]: can't pass `u16` to variadic function
|
2019-08-10 14:38:17 +03:00
|
|
|
--> $DIR/E0617.rs:19:36
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | printf(::std::ptr::null(), 0u16);
|
2024-11-29 11:15:15 +01:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
|
|
help: cast the value to `c_uint`
|
|
|
|
|
|
|
|
|
|
|
LL | printf(::std::ptr::null(), 0u16 as c_uint);
|
|
|
|
|
| +++++++++
|
2018-02-07 19:35:35 -08:00
|
|
|
|
2024-11-27 15:37:27 +01:00
|
|
|
error[E0617]: can't pass a function item to a variadic function
|
2019-08-10 14:38:17 +03:00
|
|
|
--> $DIR/E0617.rs:22:36
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | printf(::std::ptr::null(), printf);
|
2018-02-07 19:35:35 -08:00
|
|
|
| ^^^^^^
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2024-11-27 15:37:27 +01:00
|
|
|
= help: a function item is zero-sized and needs to be cast into a function pointer to be used in FFI
|
|
|
|
|
= note: for more information on function items, visit https://doc.rust-lang.org/reference/types/function-item.html
|
|
|
|
|
help: use a function pointer instead
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
2019-08-10 14:38:17 +03:00
|
|
|
LL | printf(::std::ptr::null(), printf as unsafe extern "C" fn(*const i8, ...));
|
2024-11-27 15:37:27 +01:00
|
|
|
| +++++++++++++++++++++++++++++++++++++++
|
2018-02-07 19:35:35 -08:00
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0617`.
|