]> git.lizzy.rs Git - rust.git/blob - tests/ui/generic-associated-types/issue-67424.rs
Auto merge of #106696 - kylematsuda:early-binder, r=lcnr
[rust.git] / tests / ui / generic-associated-types / issue-67424.rs
1 // check-pass
2 // Fixed by #67160
3
4 trait Trait1 {
5     type A;
6 }
7
8 trait Trait2 {
9     type Type1<B>: Trait1<A=B>;
10 }
11
12 fn main() {}