blob: 750727273eb1fad02e2597cf2f1532ee3138654d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
error: expected `}`, found `,`
--> $DIR/issue-54379.rs:9:22
|
LL | MyStruct { .., Some(_) } => {},
| --^
| | |
| | expected `}`
| `..` must be at the end and cannot have a trailing comma
error: expected `,`
--> $DIR/issue-54379.rs:9:28
|
LL | MyStruct { .., Some(_) } => {},
| -------- ^
| |
| while parsing the fields for this pattern
error: aborting due to 2 previous errors
|