// check-pass // compile-flags: -Ztrait-solver=next // test that the new solver can handle `alias-eq(::Assoc, u32)` trait TraitA {} trait TraitB { type Assoc; } impl TraitA for (T, T::Assoc) {} impl TraitB for i32 { type Assoc = u32; } fn needs_a() {} fn main() { needs_a::<(i32, u32)>(); }