2019-12-07 23:32:58 -06:00
|
|
|
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 ...>) {}
|
|
|
|
| ^^^
|
|
|
|
|
2023-10-18 03:47:17 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2019-12-07 23:32:58 -06:00
|
|
|
|
2023-10-18 03:47:17 -05:00
|
|
|
For more information about this error, try `rustc --explain E0743`.
|