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

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

10 lines
138 B
Rust
Raw Normal View History

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