1 2 3 4 5 6 7 8 9 10 11 12
trait Foo { type Bar; } fn foo<T: Foo>() where T::Baa: std::fmt::Debug, //~^ ERROR associated type `Baa` not found for `T` { } fn main() {}