]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/cycle-generic-bound.rs
:arrow_up: rust-analyzer
[rust.git] / src / test / 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() { }