(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
macro19.rs
// { dg-additional-options "-w" }

macro_rules! call_without_semi {
    () => {
        f()
    };
    (block) => {{
        f()
    }};
}

fn f() {}

fn main() -> i32 {
    call_without_semi!();
    call_without_semi!(block);

    0
}