]> git.lizzy.rs Git - rust.git/blob - tests/ui/impl-trait/multiple-lifetimes/ordinary-bounds-unrelated.stderr
Rollup merge of #106661 - mjguzik:linux_statx, r=Mark-Simulacrum
[rust.git] / tests / ui / impl-trait / multiple-lifetimes / ordinary-bounds-unrelated.stderr
1 error[E0700]: hidden type for `impl Trait<'d, 'e>` captures lifetime that does not appear in bounds
2   --> $DIR/ordinary-bounds-unrelated.rs:28:33
3    |
4 LL | fn upper_bounds<'a, 'b, 'c, 'd, 'e>(a: Ordinary<'a>, b: Ordinary<'b>) -> impl Trait<'d, 'e>
5    |                     -- hidden type `Ordinary<'b>` captures the lifetime `'b` as defined here
6 ...
7 LL |     if condition() { a } else { b }
8    |                                 ^
9    |
10 help: to declare that `impl Trait<'d, 'e>` captures `'b`, you can add an explicit `'b` lifetime bound
11    |
12 LL | fn upper_bounds<'a, 'b, 'c, 'd, 'e>(a: Ordinary<'a>, b: Ordinary<'b>) -> impl Trait<'d, 'e> + 'b
13    |                                                                                             ++++
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0700`.