about summary refs log tree commit diff
path: root/src/test/run-pass/cycle-generic-bound.rs
blob: 56bfa98451f740113c7c08b5f55dc28d5e065de3 (plain)
1
2
3
4
5
6
7
8
9
10
// Regression test for #15477. This test just needs to compile.

// pretty-expanded FIXME #23616

trait Chromosome<X: Chromosome<i32>> {
}

impl Chromosome<i32> for i32 { }

fn main() { }