blob: 49fc2fe0f5bc6604b74fce41837b10a0e1baa25f [file] [log] [blame] [edit]
//@ edition: 2021
// 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; //~ ERROR `std` is ambiguous
use ::std::mem as _; //~ ERROR `std` is ambiguous
fn main() {}