]> git.proxmox.com Git - rustc.git/blob - tests/ui/imports/extern-prelude-extern-crate-pass.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / imports / extern-prelude-extern-crate-pass.rs
1 // build-pass (FIXME(62277): could be check-pass?)
2 // aux-build:two_macros.rs
3
4 extern crate two_macros;
5
6 mod m {
7 fn check() {
8 two_macros::m!(); // OK
9 }
10 }
11
12 fn main() {}