blob: dd7b4c0893bda63dabd774ba5af3de0a2a7578c1 [file] [log] [blame]
#![feature(lang_items)]
#[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 }