2018-04-01 21:48:39 +03:00
|
|
|
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
|
2017-12-30 21:16:16 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _condemned = justice.00;
|
2023-11-09 06:01:10 +00:00
|
|
|
| ^^ unknown field
|
2023-10-24 23:31:47 +00:00
|
|
|
|
|
2025-07-30 16:21:40 +00:00
|
|
|
= note: available fields are: `0`, `1`
|
2017-12-30 21:16:16 -08:00
|
|
|
|
2018-04-01 21:48:39 +03:00
|
|
|
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
|
2017-12-30 21:16:16 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _punishment = justice.001;
|
2023-11-09 06:01:10 +00:00
|
|
|
| ^^^ unknown field
|
2018-04-01 21:48:39 +03:00
|
|
|
|
|
|
|
|
|
= note: available fields are: `0`, `1`
|
2017-12-30 21:16:16 -08:00
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
2018-04-01 21:48:39 +03:00
|
|
|
For more information about this error, try `rustc --explain E0609`.
|