2018-09-17 09:09:45 -04:00
|
|
|
error[E0609]: no field `0` on type `[{integer}; 5]`
|
|
|
|
--> $DIR/issue-53712.rs:5:9
|
|
|
|
|
|
|
|
|
LL | arr.0;
|
2018-09-18 14:41:34 -04:00
|
|
|
| ^ help: instead of using tuple indexing, use array indexing: `arr[0]`
|
2018-09-17 09:09:45 -04:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0609`.
|