]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/issue-55673.rs
Rollup merge of #101292 - rust-lang:notriddle/rustdoc-table-first-child, r=GuillaumeGomez
[rust.git] / src / test / 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() {}