blob: 8cab1f66c2709348b1ec2ef4c3c56b8bfee22278 [file] [log] [blame]
#![feature(associated_type_bounds)]
trait B {
type AssocType;
}
fn f()
where
dyn for<'j> B<AssocType: 'j>:,
//~^ ERROR associated type bounds are only allowed in where clauses and function signatures
{
}
fn main() {}