rust/tests/ui/associated-type-bounds/issue-104916.rs

13 lines
169 B
Rust

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() {}