2017-12-10 13:47:55 -06:00
|
|
|
error[E0608]: cannot index into a value of type `({integer}, {integer}, {integer})`
|
|
|
|
--> $DIR/issue-27842.rs:14:13
|
|
|
|
|
|
|
|
|
14 | let _ = tup[0];
|
|
|
|
| ^^^^^^ help: to access tuple elements, use: `tup.0`
|
|
|
|
|
|
|
|
error[E0608]: cannot index into a value of type `({integer}, {integer}, {integer})`
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/issue-27842.rs:19:13
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
19 | let _ = tup[i];
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
= help: to access tuple elements, use tuple indexing syntax (e.g. `tuple.0`)
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0608"
|