blob: 6cba45129e49b1951e1b6c195d5acbe17dd01269 [file] [log] [blame]
trait Trait {
type Bound<'a>;
}
fn foo() where Trait<for<'a> Bound<'a> = &'a ()> {
//~^ ERROR `for<...>` is not allowed on associated type bounds
}
fn main() {}