Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Test a supertrait cycle where a trait extends itself.
trait Chromosome: Chromosome {
//~^ ERROR cycle detected
}
fn main() { }