rust/tests/ui/imports/extern-prelude-extern-crate-pass.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
186 B
Rust
Raw Normal View History

//@ build-pass (FIXME(62277): could be check-pass?)
//@ aux-build:two_macros.rs
extern crate two_macros;
mod m {
fn check() {
two_macros::m!(); // OK
}
}
fn main() {}