]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-19601.rs
Rollup merge of #107114 - Erk-:add-absolute-note-to-path-join, r=m-ou-se
[rust.git] / tests / ui / issues / issue-19601.rs
1 // check-pass
2
3 trait A<T> {}
4 struct B<T> where B<T>: A<B<T>> { t: T }
5
6 fn main() {}