blob: f74d7cf281116ff015cdc3f1de00bd49674b101d [file] [log] [blame]
trait Foo {
//~^ ERROR cycle detected
type Context<'c>
where
Self: 'c;
}
impl Foo for Box<dyn Foo> {}
fn main() {}