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