aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/braced_macro_statements3.rs
blob: a19f4fcea0a1c360caa410879a64388a1ac23ecb (plain)
1
2
3
4
5
6
7
8
9
10
11
macro_rules! unroll {
    {} => {}
}

pub fn foo() {
    let mut _a = 14;
    unroll! {}
    let mut _b = 13;
}

fn main() -> i32 { 0 }