summary refs log tree commit diff
path: root/src/test/ui/imports/extern-prelude-extern-crate-pass.rs
blob: bb4cf6ca99c752e87e87d5911a6c4ea272e45101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// compile-pass
// aux-build:two_macros.rs

extern crate two_macros;

mod m {
    fn check() {
        two_macros::m!(); // OK
    }
}

fn main() {}