(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
empty_comment_before_match.rs
fn foo (x: i8) -> i32 { // { dg-warning "function is never used" }
    //
    match x {
        1 => { return 1; }
        _ => { return 0; }
    }
}