]> git.proxmox.com Git - rustc.git/blob - tests/ui/resolve/issue-55673.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / resolve / issue-55673.rs
1 trait Foo {
2 type Bar;
3 }
4
5 fn foo<T: Foo>()
6 where
7 T::Baa: std::fmt::Debug,
8 //~^ ERROR associated type `Baa` not found for `T`
9 {
10 }
11
12 fn main() {}