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

9 lines
150 B
Rust
Raw Normal View History

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