trait SendEqAlias = PartialEq; //~^ ERROR trait aliases are experimental struct Foo(dyn SendEqAlias); //~^ ERROR the type parameter `Rhs` must be explicitly specified [E0393] struct Bar(dyn SendEqAlias, T); //~^ ERROR the type parameter `Rhs` must be explicitly specified [E0393] fn main() {}