(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
torture/
generics11.rs
struct Foo<T>(T, u32);

type TypeAlias = Foo<i32>;

fn main() {
    let a: Foo<i32>;
    a = TypeAlias { 0: 123, 1: 456 };
}