summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-53712.stderr
blob: db85919afcb556b77a2c84c71e7bfeee24ac262f (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0609]: no field `0` on type `[{integer}; 5]`
  --> $DIR/issue-53712.rs:5:9
   |
LL |     arr.0;
   |     ----^
   |     |
   |     help: instead of using tuple indexing, use array indexing: `arr[0]`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0609`.