(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
issue-1361.rs
// { dg-options "-w" }
fn foo() -> S {
    S { a: 15 }
}

struct S {
    a: i32,
}