blob: fd20bd84edc464d7adef9522cbcd279de56df0ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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 `{` here
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0743`.
|