rust/src/test/ui/invalid-variadic-function.stderr
Vadim Petrochenkov fa2d9fc4b9 Update UI tests
2018-02-26 20:24:02 +03:00

15 lines
444 B
Plaintext

error: only foreign functions are allowed to be variadic
--> $DIR/invalid-variadic-function.rs:11:26
|
LL | extern "C" fn foo(x: u8, ...);
| ^^^
error: expected one of `->`, `where`, or `{`, found `;`
--> $DIR/invalid-variadic-function.rs:11:30
|
LL | extern "C" fn foo(x: u8, ...);
| ^ expected one of `->`, `where`, or `{` here
error: aborting due to 2 previous errors