]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/issue-72373.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / parser / issue-72373.stderr
1 error: expected one of `,`, `@`, `]`, or `|`, found `..`
2 --> $DIR/issue-72373.rs:5:19
3 |
4 LL | [h, ref ts..] => foo(c, n - h) + foo(ts, n),
5 | ^^ expected one of `,`, `@`, `]`, or `|`
6 |
7 help: if you meant to bind the contents of the rest of the array pattern into `ts`, use `@`
8 |
9 LL | [h, ref ts @ ..] => foo(c, n - h) + foo(ts, n),
10 | +
11
12 error: aborting due to previous error
13