rust/tests/ui/parser/variadic-ffi-nested-syntactic-fail.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
527 B
Plaintext
Raw Normal View History

error[E0743]: C-variadic type `...` may not be nested inside another type
--> $DIR/variadic-ffi-nested-syntactic-fail.rs:1:25
|
LL | fn f1<'a>(x: u8, y: &'a ...) {}
| ^^^
error[E0743]: C-variadic type `...` may not be nested inside another type
--> $DIR/variadic-ffi-nested-syntactic-fail.rs:4:29
|
LL | fn f2<'a>(x: u8, y: Vec<&'a ...>) {}
| ^^^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0743`.