DEBSOURCES
Skip Quicknav
sources / rustc / 1.86.0%2Bdfsg1-1 / tests / ui / generic-associated-types / unknown-lifetime-ice-119827.rs
12345678910
trait Foo { //~^ ERROR cycle detected type Context<'c> where Self: 'c; } impl Foo for Box<dyn Foo> {} fn main() {}