blob: 67b7c78071c378af04253c203f6e6b2fe652878e [file] [log] [blame]
trait Bar {}
trait Foo {
type Assoc: Bar;
}
impl Foo for () {
type Assoc = bool; //~ ERROR the trait bound `bool: Bar` is not satisfied
}
trait Baz where Self::Assoc: Bar {
type Assoc;
}
impl Baz for () {
type Assoc = bool; //~ ERROR the trait bound `bool: Bar` is not satisfied
}
trait Bat where <Self as Bat>::Assoc: Bar {
type Assoc;
}
impl Bat for () {
type Assoc = bool; //~ ERROR the trait bound `bool: Bar` is not satisfied
}
fn main() {}