blob: 0bd4624de3f1e74093e4541855e89205c3e74a3a [file] [log] [blame]
#![feature(trait_alias)]
trait T1 = T2;
//~^ ERROR cycle detected when computing the implied predicates of `T1`
trait T2 = T3;
trait T3 = T1 + T3;
fn main() {}