mirror of https://github.com/rust-lang/rust
21 lines
495 B
Rust
21 lines
495 B
Rust
//@ edition:2018
|
|
//@ aux-crate:issue_80074=issue-80074-macro.rs
|
|
//@ aux-crate:issue_80074_2=issue-80074-macro-2.rs
|
|
|
|
#[macro_use]
|
|
extern crate issue_80074;
|
|
|
|
#[macro_use(m)]
|
|
extern crate issue_80074_2;
|
|
//~^^ ERROR: imported macro not found
|
|
|
|
fn main() {
|
|
foo!();
|
|
//~^ WARN: macro `foo` is private
|
|
//~| WARN: it will become a hard error in a future release!
|
|
bar!();
|
|
//~^ ERROR: cannot find macro `bar` in this scope
|
|
m!();
|
|
//~^ ERROR: cannot find macro `m` in this scope
|
|
}
|