about summary refs log tree commit diff
path: root/tests/ui/macros/macro-use-undef.rs
blob: 8e903927565c4aff25262d8784cce5d5f18eca5a (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!();
}