Files
rust/tests/ui/structs/tuple-struct-field-naming-47073.stderr

20 lines
594 B
Plaintext
Raw Normal View History

error[E0609]: no field `00` on type `Verdict`
2025-07-13 16:25:27 -04:00
--> $DIR/tuple-struct-field-naming-47073.rs:9:30
|
2018-02-23 03:42:32 +03:00
LL | let _condemned = justice.00;
2023-11-09 06:01:10 +00:00
| ^^ unknown field
|
= note: available fields are: `0`, `1`
error[E0609]: no field `001` on type `Verdict`
2025-07-13 16:25:27 -04:00
--> $DIR/tuple-struct-field-naming-47073.rs:11:31
|
2018-02-23 03:42:32 +03:00
LL | let _punishment = justice.001;
2023-11-09 06:01:10 +00:00
| ^^^ unknown field
|
= note: available fields are: `0`, `1`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0609`.