Skip to content

Commit 64ad3e2

Browse files
committed
adjust enum type instead of variant suggestions for prelude enums
The present author regrets not thinking of a more eloquent way to do this.
1 parent 3986c96 commit 64ad3e2

File tree

4 files changed

+22
-15
lines changed

4 files changed

+22
-15
lines changed

src/librustc_resolve/lib.rs

+11-1
Original file line numberDiff line numberDiff line change
@@ -3237,7 +3237,17 @@ impl<'a> Resolver<'a> {
32373237
err.span_suggestions_with_applicability(
32383238
span,
32393239
&msg,
3240-
enum_candidates.into_iter().map(|(_variant, enum_ty)| enum_ty),
3240+
enum_candidates.into_iter()
3241+
.map(|(_variant_path, enum_ty_path)| enum_ty_path)
3242+
// variants reëxported in prelude doesn't mean `prelude::v1` is the
3243+
// type name! FIXME: is there a more principled way to do this that
3244+
// would work for other reëxports?
3245+
.filter(|enum_ty_path| enum_ty_path != "std::prelude::v1")
3246+
// also say `Option` rather than `std::prelude::v1::Option`
3247+
.map(|enum_ty_path| {
3248+
// FIXME #56861: DRYer prelude filtering
3249+
enum_ty_path.trim_start_matches("std::prelude::v1::").to_owned()
3250+
}),
32413251
Applicability::MachineApplicable,
32423252
);
32433253
}

src/librustc_typeck/check/demand.rs

+1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ impl<'a, 'gcx, 'tcx> FnCtxt<'a, 'gcx, 'tcx> {
123123
let sole_field_ty = sole_field.ty(self.tcx, substs);
124124
if self.can_coerce(expr_ty, sole_field_ty) {
125125
let variant_path = self.tcx.item_path_str(variant.did);
126+
// FIXME #56861: DRYer prelude filtering
126127
Some(variant_path.trim_start_matches("std::prelude::v1::").to_string())
127128
} else {
128129
None

src/test/ui/did_you_mean/issue-56028-there-is-an-enum-variant.rs

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ enum Solidify { Set }
77
enum UnorderedCollection { Set }
88

99
fn setup() -> Set { Set }
10+
//~^ ERROR cannot find type `Set` in this scope
11+
//~| ERROR cannot find value `Set` in this scope
1012

1113
fn main() {
1214
setup();

src/test/ui/issues/issue-35675.stderr

+8-14
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,10 @@ error[E0573]: expected type, found variant `Ok`
4141
--> $DIR/issue-35675.rs:29:13
4242
|
4343
LL | fn foo() -> Ok {
44-
| ^^ not a type
45-
help: try using the variant's enum
46-
|
47-
LL | fn foo() -> std::prelude::v1 {
48-
| ^^^^^^^^^^^^^^^^
49-
LL | fn foo() -> std::result::Result {
50-
| ^^^^^^^^^^^^^^^^^^^
44+
| ^^
45+
| |
46+
| not a type
47+
| help: try using the variant's enum: `std::result::Result`
5148

5249
error[E0412]: cannot find type `Variant3` in this scope
5350
--> $DIR/issue-35675.rs:34:13
@@ -63,13 +60,10 @@ error[E0573]: expected type, found variant `Some`
6360
--> $DIR/issue-35675.rs:38:13
6461
|
6562
LL | fn qux() -> Some {
66-
| ^^^^ not a type
67-
help: try using the variant's enum
68-
|
69-
LL | fn qux() -> std::prelude::v1::Option {
70-
| ^^^^^^^^^^^^^^^^^^^^^^^^
71-
LL | fn qux() -> std::prelude::v1 {
72-
| ^^^^^^^^^^^^^^^^
63+
| ^^^^
64+
| |
65+
| not a type
66+
| help: try using the variant's enum: `Option`
7367

7468
error: aborting due to 7 previous errors
7569

0 commit comments

Comments
 (0)