rust/tests/ui/cycle-trait/cycle-trait-supertrait-indi...

14 lines
201 B
Rust

// Test a supertrait cycle where the first trait we find (`A`) is not
// a direct participant in the cycle.
trait A: B {
}
trait B: C {
//~^ ERROR cycle detected
}
trait C: B { }
fn main() { }