trait SendEqAlias = PartialEq; //~^ ERROR trait aliases are experimental struct Foo(dyn SendEqAlias); //~^ ERROR the trait alias `SendEqAlias` is not dyn compatible struct Bar(dyn SendEqAlias, T); //~^ ERROR the trait alias `SendEqAlias` is not dyn compatible fn main() {}