summaryrefslogtreecommitdiffstats
path: root/tests/ui/empty/empty-macro-use.rs
blob: 846004e661ddf150ca67a2d1679c6dd237d2404d (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
}