1 2 3 4 5 6 7
// Test a supertrait cycle where a trait extends itself. trait Chromosome: Chromosome { //~^ ERROR cycle detected } fn main() { }