]> git.proxmox.com Git - rustc.git/blob - src/test/ui/invalid/invalid-variadic-function.stderr
New upstream version 1.30.0~beta.7+dfsg1
[rustc.git] / src / test / ui / invalid / invalid-variadic-function.stderr
1 error: only foreign functions are allowed to be variadic
2 --> $DIR/invalid-variadic-function.rs:11:26
3 |
4 LL | extern "C" fn foo(x: u8, ...);
5 | ^^^
6
7 error: expected one of `->`, `where`, or `{`, found `;`
8 --> $DIR/invalid-variadic-function.rs:11:30
9 |
10 LL | extern "C" fn foo(x: u8, ...);
11 | ^ expected one of `->`, `where`, or `{` here
12
13 error: aborting due to 2 previous errors
14