summary refs log tree commit diff
path: root/src/test/compile-fail/issue-6596.rs
blob: 3c952dbc590877b3dbf702611123598ae46eb741 (plain)
1
2
3
4
5
6
7
8
9
macro_rules! e( //~ ERROR unknown macro variable `nonexistent`
    ($inp:ident) => (
        $nonexistent
    );
)

fn main() {
    e!(foo);
}