aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-1589.rs
blob: 1dd7a45286c47d0106e00cdeaa950185384f6ee2 (plain)
1
2
3
4
5
6
7
8
#[lang = "sized"]
pub trait Sized {}

pub trait A: B {}
// { dg-error "cycle detected when computing the super predicates of .A." "" { target *-*-* } .-1 }

pub trait B: A {}
// { dg-error "cycle detected when computing the super predicates of .B." "" { target *-*-* } .-1 }