mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
527 B
Plaintext
16 lines
527 B
Plaintext
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`.
|