summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/macro-use-undef.rs
blob: ae3054e7b829036a20e71b0994d89fe81b2e829b (plain)
1
2
3
4
5
6
7
8
// aux-build:two_macros.rs

#[macro_use(macro_two, no_way)] //~ ERROR imported macro not found
extern crate two_macros;

pub fn main() {
    macro_two!();
}