rust/tests/ui/macros/macro-crate-nonterminal-non-root.rs

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

10 lines
165 B
Rust
Raw Normal View History

//@ aux-build:macro_crate_nonterminal.rs
mod foo {
#[macro_use]
extern crate macro_crate_nonterminal; //~ ERROR must be at the crate root
}
fn main() {
}