about summary refs log tree commit diff
path: root/tests/ui/empty/empty-macro-use.rs
blob: 8f5ea7df3bd19a5eaa2fd292d965559e0d450369 (plain)
1
2
3
4
5
6
7
8
9
//@ aux-build:two_macros.rs

#[macro_use()]
extern crate two_macros;

pub fn main() {
    macro_two!();
    //~^ ERROR cannot find macro
}