rust/src/test/ui/issue-47073-zero-padded-tuple-struct-indices.stderr

15 lines
486 B
Plaintext
Raw Normal View History

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;
| ^^ 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;
| ^^^ help: try simplifying the index: `1`
error: aborting due to 2 previous errors