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

18 lines
577 B
Plaintext
Raw Normal View History

error[E0609]: no field `00` on type `Verdict`
2018-12-25 09:56:47 -06:00
--> $DIR/issue-47073-zero-padded-tuple-struct-indices.rs:8:30
|
2018-02-22 18:42:32 -06:00
LL | let _condemned = justice.00;
| ^^ did you mean `0`?
error[E0609]: no field `001` on type `Verdict`
2018-12-25 09:56:47 -06:00
--> $DIR/issue-47073-zero-padded-tuple-struct-indices.rs:10:31
|
2018-02-22 18:42:32 -06:00
LL | let _punishment = justice.001;
| ^^^ 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`.