blob: 3bcadbbdbd77cf83afb6ce680f2423619c98904d (
plain)
1
2
3
4
|
pub trait FirstTrait: SecondTrait {}
// { dg-error "cycle detected when computing the super predicates of .FirstTrait." "" { target *-*-* } .-1 }
pub trait SecondTrait: FirstTrait {}
// { dg-error "cycle detected when computing the super predicates of .SecondTrait." "" { target *-*-* } .-1 }
|