(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
torture/
generics23.rs
struct Foo<A = f32>(A);

fn main() {
    let a: Foo;
    a = Foo(123f32);
}