Skip to content

Commit 6b62275

Browse files
committed
exclude unexported macro bindings from extern crate
1 parent f4d794e commit 6b62275

File tree

5 files changed

+44
-2
lines changed

5 files changed

+44
-2
lines changed

compiler/rustc_resolve/src/build_reduced_graph.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1071,7 +1071,8 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
10711071
let import = macro_use_import(self, span);
10721072
self.r.potentially_unused_imports.push(import);
10731073
module.for_each_child(self, |this, ident, ns, binding| {
1074-
if ns == MacroNS {
1074+
if ns == MacroNS && this.r.is_accessible_from(binding.vis, this.parent_scope.module)
1075+
{
10751076
let imported_binding = this.r.import(binding, import);
10761077
this.add_macro_use_binding(ident.name, imported_binding, span, allow_shadowing);
10771078
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// edition:2018
2+
3+
macro_rules! boo { () => {}; }

tests/ui/extern/auxiliary/issue-80074-macro.rs

+2
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22

33
macro_rules! foo_ { () => {}; }
44
use foo_ as foo;
5+
6+
macro_rules! bar { () => {}; }

tests/ui/extern/issue-80074.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
// edition:2018
2-
// build-pass
32
// aux-crate:issue_80074=issue-80074-macro.rs
3+
// aux-crate:issue_80074_2=issue-80074-macro-2.rs
44

55
#[macro_use]
66
extern crate issue_80074;
77

8+
#[macro_use(boo)]
9+
extern crate issue_80074_2;
10+
//~^^ ERROR: imported macro not found
11+
812
fn main() {
913
foo!();
14+
//~^ ERROR: cannot find macro `foo` in this scope
15+
bar!();
16+
//~^ ERROR: cannot find macro `bar` in this scope
17+
boo!();
18+
//~^ ERROR: cannot find macro `boo` in this scope
1019
}

tests/ui/extern/issue-80074.stderr

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
error[E0469]: imported macro not found
2+
--> $DIR/issue-80074.rs:8:13
3+
|
4+
LL | #[macro_use(boo)]
5+
| ^^^
6+
7+
error: cannot find macro `boo` in this scope
8+
--> $DIR/issue-80074.rs:17:5
9+
|
10+
LL | boo!();
11+
| ^^^
12+
13+
error: cannot find macro `bar` in this scope
14+
--> $DIR/issue-80074.rs:15:5
15+
|
16+
LL | bar!();
17+
| ^^^
18+
19+
error: cannot find macro `foo` in this scope
20+
--> $DIR/issue-80074.rs:13:5
21+
|
22+
LL | foo!();
23+
| ^^^
24+
25+
error: aborting due to 4 previous errors
26+
27+
For more information about this error, try `rustc --explain E0469`.

0 commit comments

Comments
 (0)