Commit Graph

3 Commits

Author SHA1 Message Date
Esteban Küber
e9270e3cba Detect top-level ... in argument type
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
```
2025-09-16 11:38:08 -07:00
Esteban Küber
a84c8deb1f Fix existing test 2025-09-15 03:10:27 -07:00
Folkert de Vries
8d11719e6c simplify check_c_variadic_type 2025-09-03 18:35:00 +02:00