rust/tests/ui/issues/issue-27842.stderr
Marijn Schouten 86f2d424c8 indexing: reword help
Co-authored-by: beef <ent3rm4n@gmail.com>
2025-10-01 07:39:03 +00:00

27 lines
927 B
Text

error[E0608]: cannot index into a value of type `({integer}, {integer}, {integer})`
--> $DIR/issue-27842.rs:4:16
|
LL | let _ = tup[0];
| ^^^ help: to access tuple element `0`, use: `.0`
|
= help: tuples are indexed with a dot and a literal index: `tuple.0`, `tuple.1`, etc.
error[E0608]: cannot index into a value of type `({integer}, {integer}, {integer})`
--> $DIR/issue-27842.rs:9:16
|
LL | let _ = tup[i];
| ^^^
|
= help: tuples are indexed with a dot and a literal index: `tuple.0`, `tuple.1`, etc.
error[E0608]: cannot index into a value of type `({integer},)`
--> $DIR/issue-27842.rs:14:16
|
LL | let _ = tup[3];
| ^^^
|
= help: tuples are indexed with a dot and a literal index: `tuple.0`, `tuple.1`, etc.
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0608`.