mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
20 lines
537 B
Plaintext
20 lines
537 B
Plaintext
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
|
|
|