aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/macro-issue2273.rs
blob: ee3dd1fa0bd5aaa484bf2af9c1e50f961801c84a (plain)
1
2
3
4
5
6
7
macro_rules! mac {
    () => {();} // { dg-warning "trailing semicolon" }
}

pub fn foo() {
    mac!()
}