(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
torture/
forward_decl_4.rs
fn main() {
    let mut x = TEST_CONST;
    x = x + 1;

    let mut y = x + TEST_CONST;
    // { dg-warning "unused name" "" { target *-*-* } .-1 }
}

const TEST_CONST: i32 = 10;