2024-02-16 20:02:50 +00:00
|
|
|
//@ edition: 2021
|
2023-05-19 21:12:08 +08:00
|
|
|
|
|
|
|
// https://github.com/rust-lang/rust/pull/111761#issuecomment-1557777314
|
|
|
|
macro_rules! m {
|
|
|
|
() => {
|
|
|
|
extern crate core as std;
|
|
|
|
//~^ ERROR macro-expanded `extern crate` items cannot shadow names passed with `--extern`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m!();
|
|
|
|
|
|
|
|
use std::mem;
|
|
|
|
|
|
|
|
fn main() {}
|