Skip to content

Commit bcc5ecb

Browse files
committed
Suggest importing the right kind of macro.
1 parent e7f7fe4 commit bcc5ecb

File tree

4 files changed

+53
-3
lines changed

4 files changed

+53
-3
lines changed

compiler/rustc_resolve/src/diagnostics.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -950,9 +950,7 @@ impl<'a> Resolver<'a> {
950950
self.add_typo_suggestion(err, suggestion, ident.span);
951951

952952
let import_suggestions =
953-
self.lookup_import_candidates(ident, Namespace::MacroNS, parent_scope, |res| {
954-
matches!(res, Res::Def(DefKind::Macro(MacroKind::Bang), _))
955-
});
953+
self.lookup_import_candidates(ident, Namespace::MacroNS, parent_scope, is_expected);
956954
show_candidates(err, None, &import_suggestions, false, true);
957955

958956
if macro_kind == MacroKind::Derive && (ident.name == sym::Send || ident.name == sym::Sync) {

src/test/ui/macros/issue-88228.rs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// compile-flags: -Z deduplicate-diagnostics=yes
2+
// edition:2018
3+
4+
mod hey {
5+
pub use Copy as Bla;
6+
pub use std::println as bla;
7+
}
8+
9+
#[derive(Bla)]
10+
//~^ ERROR cannot find derive macro `Bla`
11+
//~| NOTE consider importing this derive macro
12+
struct A;
13+
14+
#[derive(println)]
15+
//~^ ERROR cannot find derive macro `println`
16+
struct B;
17+
18+
fn main() {
19+
bla!();
20+
//~^ ERROR cannot find macro `bla`
21+
//~| NOTE consider importing this macro
22+
}

src/test/ui/macros/issue-88228.stderr

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
error: cannot find macro `bla` in this scope
2+
--> $DIR/issue-88228.rs:19:5
3+
|
4+
LL | bla!();
5+
| ^^^
6+
|
7+
= note: consider importing this macro:
8+
crate::hey::bla
9+
10+
error: cannot find derive macro `println` in this scope
11+
--> $DIR/issue-88228.rs:14:10
12+
|
13+
LL | #[derive(println)]
14+
| ^^^^^^^
15+
16+
error: cannot find derive macro `Bla` in this scope
17+
--> $DIR/issue-88228.rs:9:10
18+
|
19+
LL | #[derive(Bla)]
20+
| ^^^
21+
|
22+
= note: consider importing this derive macro:
23+
crate::hey::Bla
24+
25+
error: aborting due to 3 previous errors
26+

src/test/ui/proc-macro/derive-helper-shadowing.stderr

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ error: cannot find attribute `empty_helper` in this scope
1616
LL | #[derive(GenHelperUse)]
1717
| ^^^^^^^^^^^^
1818
|
19+
= note: consider importing this attribute macro:
20+
empty_helper
1921
= note: this error originates in the derive macro `GenHelperUse` (in Nightly builds, run with -Z macro-backtrace for more info)
2022

2123
error: cannot find attribute `empty_helper` in this scope
@@ -27,6 +29,8 @@ LL | #[empty_helper]
2729
LL | gen_helper_use!();
2830
| ------------------ in this macro invocation
2931
|
32+
= note: consider importing this attribute macro:
33+
crate::empty_helper
3034
= note: this error originates in the macro `gen_helper_use` (in Nightly builds, run with -Z macro-backtrace for more info)
3135

3236
error[E0659]: `empty_helper` is ambiguous (name vs any other name during import resolution)

0 commit comments

Comments
 (0)