mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +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!();
|