// run-rustfix #![allow(dead_code)] trait Foo { type Bar; } fn foo() where T::Baa: std::fmt::Debug, //~^ ERROR associated type `Baa` not found for `T` { } fn bar() where T::Baa: std::fmt::Debug, //~^ ERROR associated type `Baa` not found for `T` { } fn main() {}