mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
13 lines
245 B
Rust
13 lines
245 B
Rust
|
macro_rules! define_other_core {
|
||
|
( ) => {
|
||
|
extern crate std as core;
|
||
|
//~^ ERROR macro-expanded `extern crate` items cannot shadow names passed with `--extern`
|
||
|
};
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
core::panic!();
|
||
|
}
|
||
|
|
||
|
define_other_core!();
|