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 `,`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-54379.rs:9:24
|
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
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error[E0027]: pattern does not mention field `s1`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-54379.rs:9:9
|
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
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ missing field `s1`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0027`.
|