]> git.lizzy.rs Git - rust.git/blob - tests/ui/traits/cycle-generic-bound.rs
Merge commit '598f0909568a51de8a2d1148f55a644fd8dffad0' into sync_cg_clif-2023-01-24
[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() { }