summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/issues/issue-72373.stderr
blob: 0bb99a01e55a32b0df70e29c024de09af793b9c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error: expected one of `,`, `@`, `]`, or `|`, found `..`
  --> $DIR/issue-72373.rs:5:19
   |
LL |         [h, ref ts..] => foo(c, n - h) + foo(ts, n),
   |                   ^^ expected one of `,`, `@`, `]`, or `|`
   |
help: if you meant to bind the contents of the rest of the array pattern into `ts`, use `@`
   |
LL |         [h, ref ts @ ..] => foo(c, n - h) + foo(ts, n),
   |                    +

error: aborting due to previous error