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