mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
23 lines
475 B
Rust
23 lines
475 B
Rust
// aux-build:two_macros.rs
|
|
// compile-flags:--extern non_existent
|
|
|
|
mod n {
|
|
extern crate two_macros;
|
|
}
|
|
|
|
mod m {
|
|
fn check() {
|
|
two_macros::m!(); //~ ERROR failed to resolve: use of undeclared crate or module `two_macros`
|
|
}
|
|
}
|
|
|
|
macro_rules! define_std_as_non_existent {
|
|
() => {
|
|
extern crate std as non_existent;
|
|
//~^ ERROR `extern crate` items cannot shadow names passed with `--extern`
|
|
}
|
|
}
|
|
define_std_as_non_existent!();
|
|
|
|
fn main() {}
|