summaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/block_expr_parser_bug.rs
blob: 468aace9881a78b4732ba3d1da0808545a73eb65 (plain)
1
2
3
4
5
fn main() {
    let a = 123;
    let b = if a > 10 { a - 1 } else { a + 1 };
    // { dg-warning "unused name" "" { target *-*-* } .-1 }
}