blob: 47e1f7adf25ecfe40af51591a743bad56e4d02dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error: expected `}`, found `,`
--> $DIR/issue-10392-2.rs:6:15
|
LL | let A { .., } = a(); //~ ERROR: expected `}`
| --^
| | |
| | expected `}`
| | help: remove this comma
| `..` must be at the end and cannot have a trailing comma
error: aborting due to previous error
|