blob: ea83e3fd9dc2f4d39cbb9f10d85efba4d3809cd5 [file] [log] [blame]
trait T1 : T2 {
//~^ ERROR cycle detected
}
trait T2 : T1 {
}
fn main() { }