aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/macro45.rs
blob: 52dbcbb0016962e73e012c964601b46ba2bc3322 (plain)
1
2
3
4
5
6
7
macro_rules! empty {
    () => {}; // { dg-error "found unexpected token '\}' in null denotation" }
}

fn main() {
    let a = empty!();
}