mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-08 21:13:55 +00:00
![Esteban Küber](/assets/img/avatar_default.png)
When encountering a `Result<T, _>` or `Option<T>` where `T` has a field that's being accessed, suggest calling `.unwrap()` to get to the field.
23 lines
669 B
Plaintext
23 lines
669 B
Plaintext
error[E0609]: no field `00` on type `Verdict`
|
|
--> $DIR/issue-47073-zero-padded-tuple-struct-indices.rs:8:30
|
|
|
|
|
LL | let _condemned = justice.00;
|
|
| ^^
|
|
|
|
|
help: a field with a similar name exists
|
|
|
|
|
LL | let _condemned = justice.0;
|
|
| ~
|
|
|
|
error[E0609]: no field `001` on type `Verdict`
|
|
--> $DIR/issue-47073-zero-padded-tuple-struct-indices.rs:10:31
|
|
|
|
|
LL | let _punishment = justice.001;
|
|
| ^^^
|
|
|
|
|
= note: available fields are: `0`, `1`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0609`.
|