(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
torture/
generics20.rs
struct Foo<A, B>(A, B);

impl<T> Foo<T, T> {
    fn new(a: T, b: T) -> Self {
        Self(a, b)
    }
}

fn main() {
    let a;
    a = Foo::new(123, 456);
}