rust/tests/ui/imports/issue-109148.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
297 B
Rust
Raw Normal View History

//@ 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;
fn main() {}