-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
exclude unexported macro bindings from extern crate
- Loading branch information
Showing
4 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,5 @@ | |
|
||
macro_rules! foo_ { () => {}; } | ||
use foo_ as foo; | ||
|
||
macro_rules! bar { () => {}; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
// edition:2018 | ||
// build-pass | ||
// aux-crate:issue_80074=issue-80074-macro.rs | ||
|
||
#[macro_use] | ||
extern crate issue_80074; | ||
|
||
fn main() { | ||
foo!(); | ||
//~^ ERROR: cannot find macro `foo` in this scope | ||
bar!(); | ||
//~^ ERROR: cannot find macro `bar` in this scope | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
error: cannot find macro `bar` in this scope | ||
--> $DIR/issue-80074.rs:10:5 | ||
| | ||
LL | bar!(); | ||
| ^^^ | ||
|
||
error: cannot find macro `foo` in this scope | ||
--> $DIR/issue-80074.rs:8:5 | ||
| | ||
LL | foo!(); | ||
| ^^^ | ||
|
||
error: aborting due to 2 previous errors | ||
|