blob: 7e58b17e7db749af5fc0eec1b217c73ce011a89d [file] [log] [blame]
error[E0743]: only foreign functions are allowed to be C-variadic
--> $DIR/invalid-variadic-function.rs:1:26
|
LL | extern "C" fn foo(x: u8, ...);
| ^^^
error: expected one of `->`, `where`, or `{`, found `;`
--> $DIR/invalid-variadic-function.rs:1:30
|
LL | extern "C" fn foo(x: u8, ...);
| ^ expected one of `->`, `where`, or `{`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0743`.