]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cycle-generic-bound.rs
Merge commit 'da5a6fb1b65ec6581a67e942a3850f6bc15a552c' into clippyup
[rust.git] / src / test / ui / 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() { }