]> git.lizzy.rs Git - rust.git/blob - src/test/ui/imports/extern-prelude-extern-crate-pass.rs
bb4cf6ca99c752e87e87d5911a6c4ea272e45101
[rust.git] / src / test / ui / imports / extern-prelude-extern-crate-pass.rs
1 // compile-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() {}