blob: 026594811e4791e71be596a4afd3a0be5ef3d306 [file] [log] [blame]
error[E0608]: cannot index into a value of type `({integer}, {integer}, {integer})`
--> $DIR/issue-27842.rs:14:13
|
LL | let _ = tup[0];
| ^^^^^^ help: to access tuple elements, use: `tup.0`
error[E0608]: cannot index into a value of type `({integer}, {integer}, {integer})`
--> $DIR/issue-27842.rs:19:13
|
LL | let _ = tup[i];
| ^^^^^^
|
= help: to access tuple elements, use tuple indexing syntax (e.g. `tuple.0`)
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0608`.