summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/issue-55673.rs
blob: 0436bd397424c2ee66d0583b484ec17cf83c462d (plain)
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() {}