mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 07:00:47 +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!();
|