summaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/shadow2.rs
blob: 161dc380a0792898ffdac26c6dbb99fe9a535f91 (plain)
1
2
3
4
5
fn main() {
    let x = 1;
    let x = x + 1;
    // { dg-warning "unused name" "" { target *-*-* } .-1 }
}