Files
rust/tests/ui/c-variadic/variadic-ffi-2.stderr

10 lines
390 B
Plaintext
Raw Normal View History

error[E0045]: C-variadic functions with the "Rust" calling convention are not supported
--> $DIR/variadic-ffi-2.rs:3:11
2018-08-08 14:28:26 +02:00
|
LL | fn baz(f: extern "Rust" fn(usize, ...)) {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ C-variadic function must have a compatible calling convention
2018-08-08 14:28:26 +02:00
error: aborting due to 1 previous error
2018-08-08 14:28:26 +02:00
For more information about this error, try `rustc --explain E0045`.