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