summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-47073-zero-padded-tuple-struct-indices.stderr
blob: 5e1b816defda37da049523183cc3f3267526254b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error[E0609]: no field `00` on type `Verdict`
  --> $DIR/issue-47073-zero-padded-tuple-struct-indices.rs:8:30
   |
LL |     let _condemned = justice.00;
   |                              ^^ help: a field with a similar name exists: `0`

error[E0609]: no field `001` on type `Verdict`
  --> $DIR/issue-47073-zero-padded-tuple-struct-indices.rs:10:31
   |
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`.