mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-30 16:26:10 +00:00

When writing something like the expression `|_: ...| {}`, we now detect the `...` during parsing explicitly instead of relying on the detection in `parse_ty_common` so that we don't talk about "nested `...` are not supported". ``` error: unexpected `...` --> $DIR/no-closure.rs:6:35 | LL | const F: extern "C" fn(...) = |_: ...| {}; | ^^^ | = note: only `extern "C"` and `extern "C-unwind"` functions may have a C variable argument list ```
27 lines
751 B
Plaintext
27 lines
751 B
Plaintext
error: unexpected `...`
|
|
--> $DIR/no-closure.rs:6:35
|
|
|
|
|
LL | const F: extern "C" fn(...) = |_: ...| {};
|
|
| ^^^
|
|
|
|
|
= note: only `extern "C"` and `extern "C-unwind"` functions may have a C variable argument list
|
|
|
|
error: unexpected `...`
|
|
--> $DIR/no-closure.rs:11:14
|
|
|
|
|
LL | let f = |...| {};
|
|
| ^^^ not a valid pattern
|
|
|
|
|
= note: only `extern "C"` and `extern "C-unwind"` functions may have a C variable argument list
|
|
|
|
error: unexpected `...`
|
|
--> $DIR/no-closure.rs:16:17
|
|
|
|
|
LL | let f = |_: ...| {};
|
|
| ^^^
|
|
|
|
|
= note: only `extern "C"` and `extern "C-unwind"` functions may have a C variable argument list
|
|
|
|
error: aborting due to 3 previous errors
|
|
|