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

10 lines
139 B
Rust
Raw Permalink Normal View History

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