]> git.proxmox.com Git - rustc.git/blame - src/test/ui/imports/extern-prelude-extern-crate-shadowing.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / imports / extern-prelude-extern-crate-shadowing.rs
CommitLineData
416331ca 1// build-pass (FIXME(62277): could be check-pass?)
13cf67c4
XL
2// aux-build:two_macros.rs
3
4extern crate two_macros as core;
5
6mod m {
7 fn check() {
8 core::m!(); // OK
9 }
10}
11
12fn main() {}