Skip to content

Commit f699947

Browse files
authored
Rollup merge of rust-lang#133154 - estebank:issue-133137, r=wesleywiser
Reword resolve errors caused by likely missing crate in dep tree Reword label and add `help`: ``` error[E0432]: unresolved import `some_novel_crate` --> f704.rs:1:5 | 1 | use some_novel_crate::Type; | ^^^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `some_novel_crate` | = help: if you wanted to use a crate named `some_novel_crate`, use `cargo add some_novel_crate` to add it to your `Cargo.toml` ``` Fix rust-lang#133137.
2 parents 5a36359 + e727641 commit f699947

File tree

106 files changed

+408
-291
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+408
-291
lines changed

compiler/rustc_resolve/src/diagnostics.rs

+32-4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ use rustc_session::lint::builtin::{
2424
MACRO_EXPANDED_MACRO_EXPORTS_ACCESSED_BY_ABSOLUTE_PATHS,
2525
};
2626
use rustc_session::lint::{AmbiguityErrorDiag, BuiltinLintDiag};
27+
use rustc_session::utils::was_invoked_from_cargo;
2728
use rustc_span::edit_distance::find_best_match_for_name;
2829
use rustc_span::edition::Edition;
2930
use rustc_span::hygiene::MacroKind;
@@ -809,7 +810,6 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
809810
}
810811
err.multipart_suggestion(msg, suggestions, applicability);
811812
}
812-
813813
if let Some(ModuleOrUniformRoot::Module(module)) = module
814814
&& let Some(module) = module.opt_def_id()
815815
&& let Some(segment) = segment
@@ -2044,13 +2044,23 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
20442044
(format!("`_` is not a valid crate or module name"), None)
20452045
} else if self.tcx.sess.is_rust_2015() {
20462046
(
2047-
format!("you might be missing crate `{ident}`"),
2047+
format!("use of unresolved module or unlinked crate `{ident}`"),
20482048
Some((
20492049
vec![(
20502050
self.current_crate_outer_attr_insert_span,
20512051
format!("extern crate {ident};\n"),
20522052
)],
2053-
format!("consider importing the `{ident}` crate"),
2053+
if was_invoked_from_cargo() {
2054+
format!(
2055+
"if you wanted to use a crate named `{ident}`, use `cargo add {ident}` \
2056+
to add it to your `Cargo.toml` and import it in your code",
2057+
)
2058+
} else {
2059+
format!(
2060+
"you might be missing a crate named `{ident}`, add it to your \
2061+
project and import it in your code",
2062+
)
2063+
},
20542064
Applicability::MaybeIncorrect,
20552065
)),
20562066
)
@@ -2229,7 +2239,25 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
22292239
let descr = binding.res().descr();
22302240
(format!("{descr} `{ident}` is not a crate or module"), suggestion)
22312241
} else {
2232-
(format!("use of undeclared crate or module `{ident}`"), suggestion)
2242+
let suggestion = if suggestion.is_some() {
2243+
suggestion
2244+
} else if was_invoked_from_cargo() {
2245+
Some((
2246+
vec![],
2247+
format!(
2248+
"if you wanted to use a crate named `{ident}`, use `cargo add {ident}` \
2249+
to add it to your `Cargo.toml`",
2250+
),
2251+
Applicability::MaybeIncorrect,
2252+
))
2253+
} else {
2254+
Some((
2255+
vec![],
2256+
format!("you might be missing a crate named `{ident}`",),
2257+
Applicability::MaybeIncorrect,
2258+
))
2259+
};
2260+
(format!("use of unresolved module or unlinked crate `{ident}`"), suggestion)
22332261
}
22342262
}
22352263
}

src/tools/miri/tests/fail/rustc-error2.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ struct Struct<T>(T);
44
impl<T> std::ops::Deref for Struct<T> {
55
type Target = dyn Fn(T);
66
fn deref(&self) -> &assert_mem_uninitialized_valid::Target {
7-
//~^ERROR: undeclared crate or module
7+
//~^ERROR: use of unresolved module or unlinked crate
88
unimplemented!()
99
}
1010
}

src/tools/miri/tests/fail/rustc-error2.stderr

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
error[E0433]: failed to resolve: use of undeclared crate or module `assert_mem_uninitialized_valid`
1+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `assert_mem_uninitialized_valid`
22
--> tests/fail/rustc-error2.rs:LL:CC
33
|
44
LL | fn deref(&self) -> &assert_mem_uninitialized_valid::Target {
5-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ use of undeclared crate or module `assert_mem_uninitialized_valid`
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `assert_mem_uninitialized_valid`
6+
|
7+
= help: you might be missing a crate named `assert_mem_uninitialized_valid`
68

79
error: aborting due to 1 previous error
810

tests/rustdoc-ui/ice-unresolved-import-100241.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ error[E0432]: unresolved import `inner`
22
--> $DIR/ice-unresolved-import-100241.rs:9:13
33
|
44
LL | pub use inner::S;
5-
| ^^^^^ you might be missing crate `inner`
5+
| ^^^^^ use of unresolved module or unlinked crate `inner`
66
|
7-
help: consider importing the `inner` crate
7+
help: you might be missing a crate named `inner`, add it to your project and import it in your code
88
|
99
LL + extern crate inner;
1010
|

tests/rustdoc-ui/intra-doc/unresolved-import-recovery.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
error[E0433]: failed to resolve: you might be missing crate `unresolved_crate`
1+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `unresolved_crate`
22
--> $DIR/unresolved-import-recovery.rs:3:5
33
|
44
LL | use unresolved_crate::module::Name;
5-
| ^^^^^^^^^^^^^^^^ you might be missing crate `unresolved_crate`
5+
| ^^^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `unresolved_crate`
66
|
7-
help: consider importing the `unresolved_crate` crate
7+
help: you might be missing a crate named `unresolved_crate`, add it to your project and import it in your code
88
|
99
LL + extern crate unresolved_crate;
1010
|
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
// This previously triggered an ICE.
22

33
pub(in crate::r#mod) fn main() {}
4-
//~^ ERROR failed to resolve: you might be missing crate `r#mod`
4+
//~^ ERROR failed to resolve: use of unresolved module or unlinked crate `r#mod`

tests/rustdoc-ui/issues/issue-61732.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
error[E0433]: failed to resolve: you might be missing crate `r#mod`
1+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `r#mod`
22
--> $DIR/issue-61732.rs:3:15
33
|
44
LL | pub(in crate::r#mod) fn main() {}
5-
| ^^^^^ you might be missing crate `r#mod`
5+
| ^^^^^ use of unresolved module or unlinked crate `r#mod`
66
|
7-
help: consider importing the `r#mod` crate
7+
help: you might be missing a crate named `r#mod`, add it to your project and import it in your code
88
|
99
LL + extern crate r#mod;
1010
|

tests/ui/attributes/check-builtin-attr-ice.stderr

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
error[E0433]: failed to resolve: use of undeclared crate or module `should_panic`
1+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `should_panic`
22
--> $DIR/check-builtin-attr-ice.rs:43:7
33
|
44
LL | #[should_panic::skip]
5-
| ^^^^^^^^^^^^ use of undeclared crate or module `should_panic`
5+
| ^^^^^^^^^^^^ use of unresolved module or unlinked crate `should_panic`
66

7-
error[E0433]: failed to resolve: use of undeclared crate or module `should_panic`
7+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `should_panic`
88
--> $DIR/check-builtin-attr-ice.rs:47:7
99
|
1010
LL | #[should_panic::a::b::c]
11-
| ^^^^^^^^^^^^ use of undeclared crate or module `should_panic`
11+
| ^^^^^^^^^^^^ use of unresolved module or unlinked crate `should_panic`
1212

13-
error[E0433]: failed to resolve: use of undeclared crate or module `deny`
13+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `deny`
1414
--> $DIR/check-builtin-attr-ice.rs:55:7
1515
|
1616
LL | #[deny::skip]
17-
| ^^^^ use of undeclared crate or module `deny`
17+
| ^^^^ use of unresolved module or unlinked crate `deny`
1818

1919
error: aborting due to 3 previous errors
2020

tests/ui/attributes/check-cfg_attr-ice.stderr

+26-26
Original file line numberDiff line numberDiff line change
@@ -17,83 +17,83 @@ LL | #[cfg_attr::no_such_thing]
1717
= help: add `#![feature(stmt_expr_attributes)]` to the crate attributes to enable
1818
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
1919

20-
error[E0433]: failed to resolve: use of undeclared crate or module `cfg_attr`
20+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `cfg_attr`
2121
--> $DIR/check-cfg_attr-ice.rs:52:3
2222
|
2323
LL | #[cfg_attr::no_such_thing]
24-
| ^^^^^^^^ use of undeclared crate or module `cfg_attr`
24+
| ^^^^^^^^ use of unresolved module or unlinked crate `cfg_attr`
2525

26-
error[E0433]: failed to resolve: use of undeclared crate or module `cfg_attr`
26+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `cfg_attr`
2727
--> $DIR/check-cfg_attr-ice.rs:55:7
2828
|
2929
LL | #[cfg_attr::no_such_thing]
30-
| ^^^^^^^^ use of undeclared crate or module `cfg_attr`
30+
| ^^^^^^^^ use of unresolved module or unlinked crate `cfg_attr`
3131

32-
error[E0433]: failed to resolve: use of undeclared crate or module `cfg_attr`
32+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `cfg_attr`
3333
--> $DIR/check-cfg_attr-ice.rs:57:17
3434
|
3535
LL | GiveYouUp(#[cfg_attr::no_such_thing] u8),
36-
| ^^^^^^^^ use of undeclared crate or module `cfg_attr`
36+
| ^^^^^^^^ use of unresolved module or unlinked crate `cfg_attr`
3737

38-
error[E0433]: failed to resolve: use of undeclared crate or module `cfg_attr`
38+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `cfg_attr`
3939
--> $DIR/check-cfg_attr-ice.rs:64:11
4040
|
4141
LL | #[cfg_attr::no_such_thing]
42-
| ^^^^^^^^ use of undeclared crate or module `cfg_attr`
42+
| ^^^^^^^^ use of unresolved module or unlinked crate `cfg_attr`
4343

44-
error[E0433]: failed to resolve: use of undeclared crate or module `cfg_attr`
44+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `cfg_attr`
4545
--> $DIR/check-cfg_attr-ice.rs:41:7
4646
|
4747
LL | #[cfg_attr::no_such_thing]
48-
| ^^^^^^^^ use of undeclared crate or module `cfg_attr`
48+
| ^^^^^^^^ use of unresolved module or unlinked crate `cfg_attr`
4949

50-
error[E0433]: failed to resolve: use of undeclared crate or module `cfg_attr`
50+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `cfg_attr`
5151
--> $DIR/check-cfg_attr-ice.rs:43:15
5252
|
5353
LL | fn from(#[cfg_attr::no_such_thing] any_other_guy: AnyOtherGuy) -> This {
54-
| ^^^^^^^^ use of undeclared crate or module `cfg_attr`
54+
| ^^^^^^^^ use of unresolved module or unlinked crate `cfg_attr`
5555

56-
error[E0433]: failed to resolve: use of undeclared crate or module `cfg_attr`
56+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `cfg_attr`
5757
--> $DIR/check-cfg_attr-ice.rs:45:11
5858
|
5959
LL | #[cfg_attr::no_such_thing]
60-
| ^^^^^^^^ use of undeclared crate or module `cfg_attr`
60+
| ^^^^^^^^ use of unresolved module or unlinked crate `cfg_attr`
6161

62-
error[E0433]: failed to resolve: use of undeclared crate or module `cfg_attr`
62+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `cfg_attr`
6363
--> $DIR/check-cfg_attr-ice.rs:32:3
6464
|
6565
LL | #[cfg_attr::no_such_thing]
66-
| ^^^^^^^^ use of undeclared crate or module `cfg_attr`
66+
| ^^^^^^^^ use of unresolved module or unlinked crate `cfg_attr`
6767

68-
error[E0433]: failed to resolve: use of undeclared crate or module `cfg_attr`
68+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `cfg_attr`
6969
--> $DIR/check-cfg_attr-ice.rs:24:3
7070
|
7171
LL | #[cfg_attr::no_such_thing]
72-
| ^^^^^^^^ use of undeclared crate or module `cfg_attr`
72+
| ^^^^^^^^ use of unresolved module or unlinked crate `cfg_attr`
7373

74-
error[E0433]: failed to resolve: use of undeclared crate or module `cfg_attr`
74+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `cfg_attr`
7575
--> $DIR/check-cfg_attr-ice.rs:27:7
7676
|
7777
LL | #[cfg_attr::no_such_thing]
78-
| ^^^^^^^^ use of undeclared crate or module `cfg_attr`
78+
| ^^^^^^^^ use of unresolved module or unlinked crate `cfg_attr`
7979

80-
error[E0433]: failed to resolve: use of undeclared crate or module `cfg_attr`
80+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `cfg_attr`
8181
--> $DIR/check-cfg_attr-ice.rs:16:3
8282
|
8383
LL | #[cfg_attr::no_such_thing]
84-
| ^^^^^^^^ use of undeclared crate or module `cfg_attr`
84+
| ^^^^^^^^ use of unresolved module or unlinked crate `cfg_attr`
8585

86-
error[E0433]: failed to resolve: use of undeclared crate or module `cfg_attr`
86+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `cfg_attr`
8787
--> $DIR/check-cfg_attr-ice.rs:19:7
8888
|
8989
LL | #[cfg_attr::no_such_thing]
90-
| ^^^^^^^^ use of undeclared crate or module `cfg_attr`
90+
| ^^^^^^^^ use of unresolved module or unlinked crate `cfg_attr`
9191

92-
error[E0433]: failed to resolve: use of undeclared crate or module `cfg_attr`
92+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `cfg_attr`
9393
--> $DIR/check-cfg_attr-ice.rs:12:3
9494
|
9595
LL | #[cfg_attr::no_such_thing]
96-
| ^^^^^^^^ use of undeclared crate or module `cfg_attr`
96+
| ^^^^^^^^ use of unresolved module or unlinked crate `cfg_attr`
9797

9898
error: aborting due to 15 previous errors
9999

tests/ui/attributes/field-attributes-vis-unresolved.stderr

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
error[E0433]: failed to resolve: you might be missing crate `nonexistent`
1+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `nonexistent`
22
--> $DIR/field-attributes-vis-unresolved.rs:17:12
33
|
44
LL | pub(in nonexistent) field: u8
5-
| ^^^^^^^^^^^ you might be missing crate `nonexistent`
5+
| ^^^^^^^^^^^ use of unresolved module or unlinked crate `nonexistent`
66
|
7-
help: consider importing the `nonexistent` crate
7+
help: you might be missing a crate named `nonexistent`, add it to your project and import it in your code
88
|
99
LL + extern crate nonexistent;
1010
|
1111

12-
error[E0433]: failed to resolve: you might be missing crate `nonexistent`
12+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `nonexistent`
1313
--> $DIR/field-attributes-vis-unresolved.rs:22:12
1414
|
1515
LL | pub(in nonexistent) u8
16-
| ^^^^^^^^^^^ you might be missing crate `nonexistent`
16+
| ^^^^^^^^^^^ use of unresolved module or unlinked crate `nonexistent`
1717
|
18-
help: consider importing the `nonexistent` crate
18+
help: you might be missing a crate named `nonexistent`, add it to your project and import it in your code
1919
|
2020
LL + extern crate nonexistent;
2121
|

tests/ui/coherence/conflicting-impl-with-err.stderr

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
1-
error[E0433]: failed to resolve: use of undeclared crate or module `nope`
1+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `nope`
22
--> $DIR/conflicting-impl-with-err.rs:4:11
33
|
44
LL | impl From<nope::Thing> for Error {
5-
| ^^^^ use of undeclared crate or module `nope`
5+
| ^^^^ use of unresolved module or unlinked crate `nope`
6+
|
7+
= help: you might be missing a crate named `nope`
68

7-
error[E0433]: failed to resolve: use of undeclared crate or module `nope`
9+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `nope`
810
--> $DIR/conflicting-impl-with-err.rs:5:16
911
|
1012
LL | fn from(_: nope::Thing) -> Self {
11-
| ^^^^ use of undeclared crate or module `nope`
13+
| ^^^^ use of unresolved module or unlinked crate `nope`
14+
|
15+
= help: you might be missing a crate named `nope`
1216

1317
error: aborting due to 2 previous errors
1418

tests/ui/delegation/bad-resolve.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ impl Trait for S {
4040
}
4141

4242
mod prefix {}
43-
reuse unresolved_prefix::{a, b, c}; //~ ERROR use of undeclared crate or module `unresolved_prefix`
43+
reuse unresolved_prefix::{a, b, c}; //~ ERROR use of unresolved module or unlinked crate
4444
reuse prefix::{self, super, crate}; //~ ERROR `crate` in paths can only be used in start position
4545

4646
fn main() {}

tests/ui/delegation/bad-resolve.stderr

+4-2
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,13 @@ LL | type Type;
8181
LL | impl Trait for S {
8282
| ^^^^^^^^^^^^^^^^ missing `Type` in implementation
8383

84-
error[E0433]: failed to resolve: use of undeclared crate or module `unresolved_prefix`
84+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `unresolved_prefix`
8585
--> $DIR/bad-resolve.rs:43:7
8686
|
8787
LL | reuse unresolved_prefix::{a, b, c};
88-
| ^^^^^^^^^^^^^^^^^ use of undeclared crate or module `unresolved_prefix`
88+
| ^^^^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `unresolved_prefix`
89+
|
90+
= help: you might be missing a crate named `unresolved_prefix`
8991

9092
error[E0433]: failed to resolve: `crate` in paths can only be used in start position
9193
--> $DIR/bad-resolve.rs:44:29

tests/ui/delegation/glob-bad-path.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ trait Trait {}
55
struct S;
66

77
impl Trait for u8 {
8-
reuse unresolved::*; //~ ERROR failed to resolve: use of undeclared crate or module `unresolved`
8+
reuse unresolved::*; //~ ERROR failed to resolve: use of unresolved module or unlinked crate `unresolved`
99
reuse S::*; //~ ERROR expected trait, found struct `S`
1010
}
1111

tests/ui/delegation/glob-bad-path.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ error: expected trait, found struct `S`
44
LL | reuse S::*;
55
| ^ not a trait
66

7-
error[E0433]: failed to resolve: use of undeclared crate or module `unresolved`
7+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `unresolved`
88
--> $DIR/glob-bad-path.rs:8:11
99
|
1010
LL | reuse unresolved::*;
11-
| ^^^^^^^^^^ use of undeclared crate or module `unresolved`
11+
| ^^^^^^^^^^ use of unresolved module or unlinked crate `unresolved`
1212

1313
error: aborting due to 2 previous errors
1414

tests/ui/error-codes/E0432.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ error[E0432]: unresolved import `something`
22
--> $DIR/E0432.rs:1:5
33
|
44
LL | use something::Foo;
5-
| ^^^^^^^^^ you might be missing crate `something`
5+
| ^^^^^^^^^ use of unresolved module or unlinked crate `something`
66
|
7-
help: consider importing the `something` crate
7+
help: you might be missing a crate named `something`, add it to your project and import it in your code
88
|
99
LL + extern crate something;
1010
|

tests/ui/extern-flag/multiple-opts.stderr

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
error[E0433]: failed to resolve: use of undeclared crate or module `somedep`
1+
error[E0433]: failed to resolve: use of unresolved module or unlinked crate `somedep`
22
--> $DIR/multiple-opts.rs:19:5
33
|
44
LL | somedep::somefun();
5-
| ^^^^^^^ use of undeclared crate or module `somedep`
5+
| ^^^^^^^ use of unresolved module or unlinked crate `somedep`
6+
|
7+
= help: you might be missing a crate named `somedep`
68

79
error: aborting due to 1 previous error
810

0 commit comments

Comments
 (0)