]> git.lizzy.rs Git - rust.git/blob - tests/ui/traits/cycle-generic-bound.rs
Rollup merge of #105172 - alexs-sh:issue-98861-fix-next, r=scottmcm
[rust.git] / tests / ui / traits / cycle-generic-bound.rs
1 // run-pass
2 // Regression test for #15477. This test just needs to compile.
3
4 // pretty-expanded FIXME #23616
5
6 trait Chromosome<X: Chromosome<i32>> {
7 }
8
9 impl Chromosome<i32> for i32 { }
10
11 fn main() { }