about summary refs log tree commit diff
path: root/tests/ui/typeck/issue-53712.stderr
blob: 16a7ce0ea62f762e97f805ab771f7013b2111f2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0609]: no field `0` on type `[{integer}; 5]`
  --> $DIR/issue-53712.rs:5:9
   |
LL |     arr.0;
   |         ^ unknown field
   |
help: instead of using tuple indexing, use array indexing
   |
LL -     arr.0;
LL +     arr[0];
   |

error: aborting due to 1 previous error

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