rust/tests/ui/generic-associated-types/unknown-lifetime-ice-119827.rs

11 lines
137 B
Rust

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