2018-10-06 17:05:42 -05:00
|
|
|
error: expected `}`, found `,`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-54379.rs:9:22
|
2018-10-06 17:05:42 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | MyStruct { .., Some(_) } => {},
|
2018-10-06 17:05:42 -05:00
|
|
|
| --^
|
|
|
|
| | |
|
|
|
|
| | expected `}`
|
|
|
|
| `..` must be at the end and cannot have a trailing comma
|
|
|
|
|
|
|
|
error: expected `,`
|
2020-10-02 02:44:16 -05:00
|
|
|
--> $DIR/issue-54379.rs:9:28
|
2018-10-06 17:05:42 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | MyStruct { .., Some(_) } => {},
|
2020-10-02 02:44:16 -05:00
|
|
|
| -------- ^
|
|
|
|
| |
|
|
|
|
| while parsing the fields for this pattern
|
2018-10-06 17:05:42 -05:00
|
|
|
|
2019-03-14 20:28:24 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2018-10-06 17:05:42 -05:00
|
|
|
|