Skip to content

Commit 1eba13e

Browse files
authored
Unrolled build for rust-lang#129520
Rollup merge of rust-lang#129520 - tunawasabi:suggest-adding-struct-pattern-syntax, r=compiler-errors Suggest the correct pattern syntax on usage of unit variant pattern for a struct variant Closes rust-lang#126243 I add a suggestion on usage of unit variant pattern for a struct variant.
2 parents 5bce6d4 + 2ddcbca commit 1eba13e

File tree

7 files changed

+86
-1
lines changed

7 files changed

+86
-1
lines changed

compiler/rustc_hir_typeck/src/lib.rs

+31-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ pub use coercion::can_coerce;
4343
use fn_ctxt::FnCtxt;
4444
use rustc_data_structures::unord::UnordSet;
4545
use rustc_errors::codes::*;
46-
use rustc_errors::{struct_span_code_err, Applicability, ErrorGuaranteed};
46+
use rustc_errors::{pluralize, struct_span_code_err, Applicability, ErrorGuaranteed};
4747
use rustc_hir as hir;
4848
use rustc_hir::def::{DefKind, Res};
4949
use rustc_hir::intravisit::Visitor;
@@ -423,6 +423,36 @@ fn report_unexpected_variant_res(
423423
err.multipart_suggestion_verbose(descr, suggestion, Applicability::MaybeIncorrect);
424424
err
425425
}
426+
Res::Def(DefKind::Variant, _) if expr.is_none() => {
427+
err.span_label(span, format!("not a {expected}"));
428+
429+
let fields = &tcx.expect_variant_res(res).fields.raw;
430+
let span = qpath.span().shrink_to_hi().to(span.shrink_to_hi());
431+
let (msg, sugg) = if fields.is_empty() {
432+
("use the struct variant pattern syntax".to_string(), " {}".to_string())
433+
} else {
434+
let msg = format!(
435+
"the struct variant's field{s} {are} being ignored",
436+
s = pluralize!(fields.len()),
437+
are = pluralize!("is", fields.len())
438+
);
439+
let fields = fields
440+
.iter()
441+
.map(|field| format!("{}: _", field.name.to_ident_string()))
442+
.collect::<Vec<_>>()
443+
.join(", ");
444+
let sugg = format!(" {{ {} }}", fields);
445+
(msg, sugg)
446+
};
447+
448+
err.span_suggestion_verbose(
449+
qpath.span().shrink_to_hi().to(span.shrink_to_hi()),
450+
msg,
451+
sugg,
452+
Applicability::HasPlaceholders,
453+
);
454+
err
455+
}
426456
_ => err.with_span_label(span, format!("not a {expected}")),
427457
}
428458
.emit()

tests/ui/empty/empty-struct-braces-pat-1.stderr

+10
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,22 @@ error[E0533]: expected unit struct, unit variant or constant, found struct varia
33
|
44
LL | E::Empty3 => ()
55
| ^^^^^^^^^ not a unit struct, unit variant or constant
6+
|
7+
help: use the struct variant pattern syntax
8+
|
9+
LL | E::Empty3 {} => ()
10+
| ++
611

712
error[E0533]: expected unit struct, unit variant or constant, found struct variant `XE::XEmpty3`
813
--> $DIR/empty-struct-braces-pat-1.rs:31:9
914
|
1015
LL | XE::XEmpty3 => ()
1116
| ^^^^^^^^^^^ not a unit struct, unit variant or constant
17+
|
18+
help: use the struct variant pattern syntax
19+
|
20+
LL | XE::XEmpty3 {} => ()
21+
| ++
1222

1323
error: aborting due to 2 previous errors
1424

tests/ui/empty/empty-struct-braces-pat-3.stderr

+20
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,44 @@ error[E0164]: expected tuple struct or tuple variant, found struct variant `E::E
33
|
44
LL | E::Empty3() => ()
55
| ^^^^^^^^^^^ not a tuple struct or tuple variant
6+
|
7+
help: use the struct variant pattern syntax
8+
|
9+
LL | E::Empty3 {} => ()
10+
| ~~
611

712
error[E0164]: expected tuple struct or tuple variant, found struct variant `XE::XEmpty3`
813
--> $DIR/empty-struct-braces-pat-3.rs:21:9
914
|
1015
LL | XE::XEmpty3() => ()
1116
| ^^^^^^^^^^^^^ not a tuple struct or tuple variant
17+
|
18+
help: use the struct variant pattern syntax
19+
|
20+
LL | XE::XEmpty3 {} => ()
21+
| ~~
1222

1323
error[E0164]: expected tuple struct or tuple variant, found struct variant `E::Empty3`
1424
--> $DIR/empty-struct-braces-pat-3.rs:25:9
1525
|
1626
LL | E::Empty3(..) => ()
1727
| ^^^^^^^^^^^^^ not a tuple struct or tuple variant
28+
|
29+
help: use the struct variant pattern syntax
30+
|
31+
LL | E::Empty3 {} => ()
32+
| ~~
1833

1934
error[E0164]: expected tuple struct or tuple variant, found struct variant `XE::XEmpty3`
2035
--> $DIR/empty-struct-braces-pat-3.rs:29:9
2136
|
2237
LL | XE::XEmpty3(..) => ()
2338
| ^^^^^^^^^^^^^^^ not a tuple struct or tuple variant
39+
|
40+
help: use the struct variant pattern syntax
41+
|
42+
LL | XE::XEmpty3 {} => ()
43+
| ~~
2444

2545
error: aborting due to 4 previous errors
2646

tests/ui/issues/issue-63983.stderr

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ error[E0533]: expected unit struct, unit variant or constant, found struct varia
1212
|
1313
LL | MyEnum::Struct => "",
1414
| ^^^^^^^^^^^^^^ not a unit struct, unit variant or constant
15+
|
16+
help: the struct variant's field is being ignored
17+
|
18+
LL | MyEnum::Struct { s: _ } => "",
19+
| ++++++++
1520

1621
error: aborting due to 2 previous errors
1722

tests/ui/parser/recover/recover-from-bad-variant.stderr

+5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ error[E0164]: expected tuple struct or tuple variant, found struct variant `Enum
1919
|
2020
LL | Enum::Foo(a, b) => {}
2121
| ^^^^^^^^^^^^^^^ not a tuple struct or tuple variant
22+
|
23+
help: the struct variant's fields are being ignored
24+
|
25+
LL | Enum::Foo { a: _, b: _ } => {}
26+
| ~~~~~~~~~~~~~~
2227

2328
error[E0769]: tuple variant `Enum::Bar` written as struct variant
2429
--> $DIR/recover-from-bad-variant.rs:12:9

tests/ui/suggestions/issue-84700.stderr

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ error[E0164]: expected tuple struct or tuple variant, found struct variant `Farm
1212
|
1313
LL | FarmAnimal::Chicken(_) => "cluck, cluck!".to_string(),
1414
| ^^^^^^^^^^^^^^^^^^^^^^ not a tuple struct or tuple variant
15+
|
16+
help: the struct variant's field is being ignored
17+
|
18+
LL | FarmAnimal::Chicken { num_eggs: _ } => "cluck, cluck!".to_string(),
19+
| ~~~~~~~~~~~~~~~
1520

1621
error: aborting due to 2 previous errors
1722

tests/ui/type-alias-enum-variants/incorrect-variant-form-through-alias-caught.stderr

+10
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,22 @@ error[E0533]: expected unit struct, unit variant or constant, found struct varia
1414
|
1515
LL | let Alias::Braced = panic!();
1616
| ^^^^^^^^^^^^^ not a unit struct, unit variant or constant
17+
|
18+
help: use the struct variant pattern syntax
19+
|
20+
LL | let Alias::Braced {} = panic!();
21+
| ++
1722

1823
error[E0164]: expected tuple struct or tuple variant, found struct variant `Alias::Braced`
1924
--> $DIR/incorrect-variant-form-through-alias-caught.rs:12:9
2025
|
2126
LL | let Alias::Braced(..) = panic!();
2227
| ^^^^^^^^^^^^^^^^^ not a tuple struct or tuple variant
28+
|
29+
help: use the struct variant pattern syntax
30+
|
31+
LL | let Alias::Braced {} = panic!();
32+
| ~~
2333

2434
error[E0618]: expected function, found enum variant `Alias::Unit`
2535
--> $DIR/incorrect-variant-form-through-alias-caught.rs:15:5

0 commit comments

Comments
 (0)