summaryrefslogtreecommitdiffstats
path: root/tests/ui/imports/issue-109148.rs
blob: 694cb494a15dc9280dbf44300b2e33fd56b584ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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() {}