error[E0261]: use of undeclared lifetime name `'a` --> $DIR/issue-69136-inner-lifetime-resolve-error.rs:19:65 | LL | type Return = impl WithAssoc; | ^^ undeclared lifetime | = note: for more information on higher-ranked polymorphism, visit https://doc.rust-lang.org/nomicon/hrtb.html help: consider making the bound lifetime-generic with a new `'a` lifetime | LL | type Return = impl for<'a> WithAssoc; | +++++++ help: consider introducing lifetime `'a` here | LL | type Return<'a, A> = impl WithAssoc; | +++ error: aborting due to previous error For more information about this error, try `rustc --explain E0261`.