error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds --> $DIR/ordinary-bounds-unsuited.rs:18:62 | LL | fn upper_bounds<'a, 'b>(a: Ordinary<'a>, b: Ordinary<'b>) -> impl Trait<'a, 'b> | -- ^^^^^^^^^^^^^^^^^^ | | | hidden type `Ordinary<'b>` captures the lifetime `'b` as defined here | help: to declare that the `impl Trait` captures `'b`, you can add an explicit `'b` lifetime bound | LL | fn upper_bounds<'a, 'b>(a: Ordinary<'a>, b: Ordinary<'b>) -> impl Trait<'a, 'b> + 'b | ++++ error: aborting due to previous error For more information about this error, try `rustc --explain E0700`.