aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-1589.rs
blob: 79a5866e4aff1143c8d0a72cb58902b1b5241002 (plain)
1
2
3
4
5
pub trait A: B {}
// { dg-error "trait cycle detected" "" { target *-*-* } .-1 }

pub trait B: A {}
// { dg-error "trait cycle detected" "" { target *-*-* } .-1 }