2017-12-30 23:16:16 -06:00
|
|
|
error: invalid tuple or struct index
|
|
|
|
--> $DIR/issue-47073-zero-padded-tuple-struct-indices.rs:18:30
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _condemned = justice.00;
|
2017-12-30 23:16:16 -06:00
|
|
|
| ^^ help: try simplifying the index: `0`
|
|
|
|
|
|
|
|
error: invalid tuple or struct index
|
|
|
|
--> $DIR/issue-47073-zero-padded-tuple-struct-indices.rs:20:31
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _punishment = justice.001;
|
2017-12-30 23:16:16 -06:00
|
|
|
| ^^^ help: try simplifying the index: `1`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|