Skip to content

Commit 6cd6759

Browse files
committed
Do not complain about unmentioned fields in recovered patterns
When the parser has to recover from malformed code in a pattern, do not complain about missing fields.
1 parent 7486b9c commit 6cd6759

7 files changed

+5
-28
lines changed

src/libsyntax/parse/parser.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4698,7 +4698,7 @@ impl<'a> Parser<'a> {
46984698
let (fields, etc) = self.parse_pat_fields().unwrap_or_else(|mut e| {
46994699
e.emit();
47004700
self.recover_stmt();
4701-
(vec![], false)
4701+
(vec![], true)
47024702
});
47034703
self.bump();
47044704
pat = PatKind::Struct(path, fields, etc);

src/test/ui/parser/bind-struct-early-modifiers.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ fn main() {
22
struct Foo { x: isize }
33
match (Foo { x: 10 }) {
44
Foo { ref x: ref x } => {}, //~ ERROR expected `,`
5-
//~| ERROR pattern does not mention field `x`
65
_ => {}
76
}
87
}

src/test/ui/parser/bind-struct-early-modifiers.stderr

+1-8
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,5 @@ error: expected `,`
44
LL | Foo { ref x: ref x } => {},
55
| ^
66

7-
error[E0027]: pattern does not mention field `x`
8-
--> $DIR/bind-struct-early-modifiers.rs:4:9
9-
|
10-
LL | Foo { ref x: ref x } => {},
11-
| ^^^^^^^^^^^^^^^^^^^^ missing field `x`
12-
13-
error: aborting due to 2 previous errors
7+
error: aborting due to previous error
148

15-
For more information about this error, try `rustc --explain E0027`.

src/test/ui/parser/issue-10392.rs

-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@ fn a() -> A { panic!() }
44

55
fn main() {
66
let A { , } = a(); //~ ERROR expected ident
7-
//~| ERROR pattern does not mention field `foo`
87
}

src/test/ui/parser/issue-10392.stderr

+1-8
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,5 @@ error: expected identifier, found `,`
44
LL | let A { , } = a();
55
| ^ expected identifier
66

7-
error[E0027]: pattern does not mention field `foo`
8-
--> $DIR/issue-10392.rs:6:9
9-
|
10-
LL | let A { , } = a();
11-
| ^^^^^^^ missing field `foo`
12-
13-
error: aborting due to 2 previous errors
7+
error: aborting due to previous error
148

15-
For more information about this error, try `rustc --explain E0027`.

src/test/ui/resolve/issue-54379.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ fn main() {
66
let thing = MyStruct { s1: None };
77

88
match thing {
9-
MyStruct { .., Some(_) } => {}, //~ ERROR pattern does not mention field `s1`
9+
MyStruct { .., Some(_) } => {},
1010
//~^ ERROR expected `,`
1111
//~| ERROR expected `}`, found `,`
1212
_ => {}

src/test/ui/resolve/issue-54379.stderr

+1-8
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,5 @@ error: expected `,`
1313
LL | MyStruct { .., Some(_) } => {},
1414
| ^^^^
1515

16-
error[E0027]: pattern does not mention field `s1`
17-
--> $DIR/issue-54379.rs:9:9
18-
|
19-
LL | MyStruct { .., Some(_) } => {},
20-
| ^^^^^^^^^^^^^^^^^^^^^^^^ missing field `s1`
21-
22-
error: aborting due to 3 previous errors
16+
error: aborting due to 2 previous errors
2317

24-
For more information about this error, try `rustc --explain E0027`.

0 commit comments

Comments
 (0)