mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
46 lines
1.5 KiB
Plaintext
46 lines
1.5 KiB
Plaintext
error: expected identifier, found reserved identifier `_`
|
|
--> $DIR/struct_destructure_fail.rs:11:17
|
|
|
|
|
LL | Struct { a, _ } = Struct { a: 1, b: 2 };
|
|
| ------ ^ expected identifier, found reserved identifier
|
|
| |
|
|
| while parsing this struct
|
|
|
|
error: functional record updates are not allowed in destructuring assignments
|
|
--> $DIR/struct_destructure_fail.rs:13:19
|
|
|
|
|
LL | Struct { a, ..d } = Struct { a: 1, b: 2 };
|
|
| ^ help: consider removing the trailing pattern
|
|
|
|
error: base expression required after `..`
|
|
--> $DIR/struct_destructure_fail.rs:15:19
|
|
|
|
|
LL | Struct { a, .. };
|
|
| ^ add a base expression here
|
|
|
|
error[E0026]: struct `Struct` does not have a field named `c`
|
|
--> $DIR/struct_destructure_fail.rs:10:20
|
|
|
|
|
LL | Struct { a, b, c } = Struct { a: 0, b: 1 };
|
|
| ^ struct `Struct` does not have this field
|
|
|
|
error[E0027]: pattern does not mention field `b`
|
|
--> $DIR/struct_destructure_fail.rs:11:5
|
|
|
|
|
LL | Struct { a, _ } = Struct { a: 1, b: 2 };
|
|
| ^^^^^^^^^^^^^^^ missing field `b`
|
|
|
|
|
help: include the missing field in the pattern
|
|
|
|
|
LL | Struct { a, b } = Struct { a: 1, b: 2 };
|
|
| ~~~~~
|
|
help: if you don't care about this missing field, you can explicitly ignore it
|
|
|
|
|
LL | Struct { a, .. } = Struct { a: 1, b: 2 };
|
|
| ~~~~~~
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
Some errors have detailed explanations: E0026, E0027.
|
|
For more information about an error, try `rustc --explain E0026`.
|