summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-27842.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:59:24 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:59:24 +0000
commit023939b627b7dc93b01471f7d41fb8553ddb4ffa (patch)
tree60fc59477c605c72b0a1051409062ddecc43f877 /tests/ui/issues/issue-27842.stderr
parentAdding debian version 1.72.1+dfsg1-1. (diff)
downloadrustc-023939b627b7dc93b01471f7d41fb8553ddb4ffa.tar.xz
rustc-023939b627b7dc93b01471f7d41fb8553ddb4ffa.zip
Merging upstream version 1.73.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/issues/issue-27842.stderr')
-rw-r--r--tests/ui/issues/issue-27842.stderr12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/ui/issues/issue-27842.stderr b/tests/ui/issues/issue-27842.stderr
index 83333aa0c..b18fe1512 100644
--- a/tests/ui/issues/issue-27842.stderr
+++ b/tests/ui/issues/issue-27842.stderr
@@ -1,24 +1,24 @@
error[E0608]: cannot index into a value of type `({integer}, {integer}, {integer})`
- --> $DIR/issue-27842.rs:4:13
+ --> $DIR/issue-27842.rs:4:16
|
LL | let _ = tup[0];
- | ^^^^^^ help: to access tuple elements, use: `tup.0`
+ | ^^^ help: to access tuple elements, use: `.0`
error[E0608]: cannot index into a value of type `({integer}, {integer}, {integer})`
- --> $DIR/issue-27842.rs:9:13
+ --> $DIR/issue-27842.rs:9:16
|
LL | let _ = tup[i];
- | ^^^^-^
+ | ^-^
| |
| cannot access tuple elements at a variable index
|
= help: to access tuple elements, use tuple indexing syntax (e.g., `tuple.0`)
error[E0608]: cannot index into a value of type `({integer},)`
- --> $DIR/issue-27842.rs:14:13
+ --> $DIR/issue-27842.rs:14:16
|
LL | let _ = tup[3];
- | ^^^^^^
+ | ^^^
|
= help: to access tuple elements, use tuple indexing syntax (e.g., `tuple.0`)