blob: 0436bd397424c2ee66d0583b484ec17cf83c462d [file] [log] [blame]
trait Foo {
type Bar;
}
fn foo<T: Foo>()
where
T::Baa: std::fmt::Debug,
//~^ ERROR associated type `Baa` not found for `T`
{
}
fn main() {}