(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
torture/
struct_init_8.rs
struct Foo(f32, i32);

fn main() {
    let a = Foo { 1: 1, 0: 2f32 };
    let b = Foo { ..a };
    // { dg-warning "unused name" "" { target *-*-* } .-1 }
}