summaryrefslogtreecommitdiffstats
path: root/src/test/ui/did_you_mean/issue-48492-tuple-destructure-missing-parens.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/did_you_mean/issue-48492-tuple-destructure-missing-parens.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/did_you_mean/issue-48492-tuple-destructure-missing-parens.stderr')
-rw-r--r--src/test/ui/did_you_mean/issue-48492-tuple-destructure-missing-parens.stderr74
1 files changed, 0 insertions, 74 deletions
diff --git a/src/test/ui/did_you_mean/issue-48492-tuple-destructure-missing-parens.stderr b/src/test/ui/did_you_mean/issue-48492-tuple-destructure-missing-parens.stderr
deleted file mode 100644
index a3c607b59..000000000
--- a/src/test/ui/did_you_mean/issue-48492-tuple-destructure-missing-parens.stderr
+++ /dev/null
@@ -1,74 +0,0 @@
-error: unexpected `,` in pattern
- --> $DIR/issue-48492-tuple-destructure-missing-parens.rs:38:17
- |
-LL | while let b1, b2, b3 = reading_frame.next().expect("there should be a start codon") {
- | ----- ^
- | |
- | while parsing the condition of this `while` expression
- |
-help: try adding parentheses to match on a tuple
- |
-LL | while let (b1, b2, b3) = reading_frame.next().expect("there should be a start codon") {
- | + +
-
-error: unexpected `,` in pattern
- --> $DIR/issue-48492-tuple-destructure-missing-parens.rs:49:14
- |
-LL | if let b1, b2, b3 = reading_frame.next().unwrap() {
- | ^
- |
-help: try adding parentheses to match on a tuple
- |
-LL | if let (b1, b2, b3) = reading_frame.next().unwrap() {
- | + +
-
-error: unexpected `,` in pattern
- --> $DIR/issue-48492-tuple-destructure-missing-parens.rs:59:28
- |
-LL | Nucleotide::Adenine, Nucleotide::Cytosine, _ => true
- | ^
- |
-help: try adding parentheses to match on a tuple...
- |
-LL | (Nucleotide::Adenine, Nucleotide::Cytosine, _) => true
- | + +
-help: ...or a vertical bar to match on multiple alternatives
- |
-LL | Nucleotide::Adenine | Nucleotide::Cytosine | _ => true
- | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-error: unexpected `,` in pattern
- --> $DIR/issue-48492-tuple-destructure-missing-parens.rs:67:10
- |
-LL | for x, _barr_body in women.iter().map(|woman| woman.allosomes.clone()) {
- | ^
- |
-help: try adding parentheses to match on a tuple
- |
-LL | for (x, _barr_body) in women.iter().map(|woman| woman.allosomes.clone()) {
- | + +
-
-error: unexpected `,` in pattern
- --> $DIR/issue-48492-tuple-destructure-missing-parens.rs:75:10
- |
-LL | for x, y @ Allosome::Y(_) in men.iter().map(|man| man.allosomes.clone()) {
- | ^
- |
-help: try adding parentheses to match on a tuple
- |
-LL | for (x, y @ Allosome::Y(_)) in men.iter().map(|man| man.allosomes.clone()) {
- | + +
-
-error: unexpected `,` in pattern
- --> $DIR/issue-48492-tuple-destructure-missing-parens.rs:84:14
- |
-LL | let women, men: (Vec<Genome>, Vec<Genome>) = genomes.iter().cloned()
- | ^
- |
-help: try adding parentheses to match on a tuple
- |
-LL | let (women, men): (Vec<Genome>, Vec<Genome>) = genomes.iter().cloned()
- | + +
-
-error: aborting due to 6 previous errors
-