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

11 lines
166 B
Rust
Raw Permalink Normal View History

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