2024-01-13 07:05:07 +00:00
|
|
|
error[E0045]: C-variadic function must have a compatible calling convention, like `C`, `cdecl`, `system`, `aapcs`, `win64`, `sysv64` or `efiapi`
|
2025-02-18 14:00:26 +00:00
|
|
|
--> $DIR/variadic-ffi-2.rs:3:11
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2025-02-18 14:00:26 +00:00
|
|
|
LL | fn baz(f: extern "Rust" fn(usize, ...)) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ C-variadic function must have a compatible calling convention
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0045`.
|