]> git.lizzy.rs Git - rust.git/blob - src/test/ui/imports/extern-prelude-extern-crate-shadowing.rs
Rollup merge of #106043 - c410-f3r:moar-errors, r=petrochenkov
[rust.git] / src / test / ui / imports / extern-prelude-extern-crate-shadowing.rs
1 // build-pass (FIXME(62277): could be check-pass?)
2 // aux-build:two_macros.rs
3
4 extern crate two_macros as core;
5
6 mod m {
7     fn check() {
8         core::m!(); // OK
9     }
10 }
11
12 fn main() {}