rust/tests/ui/missing/missing-macro-use.rs

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

9 lines
149 B
Rust
Raw Normal View History

2015-01-03 04:50:45 +08:00
// aux-build:two_macros.rs
extern crate two_macros;
pub fn main() {
macro_two!();
//~^ ERROR cannot find macro `macro_two` in this scope
2015-01-03 04:50:45 +08:00
}