1 2 3 4 5 6 7 8 9 10 11 12
trait B { type AssocType; } fn f() where dyn for<'j> B<AssocType: 'j>:, //~^ ERROR: associated type bounds are not allowed in `dyn` types { } fn main() {}