2022-10-23 19:11:25 -04:00
|
|
|
error[E0045]: C-variadic function must have a compatible calling convention, like `C`, `cdecl`, `win64`, `sysv64` or `efiapi`
|
2022-12-16 15:02:22 -05:00
|
|
|
--> $DIR/variadic-ffi-2.rs:4:11
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | fn baz(f: extern "stdcall" fn(usize, ...)) {
|
2022-08-08 15:31:32 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ C-variadic function must have a compatible calling convention
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0045`.
|