]> git.lizzy.rs Git - rust.git/blob - src/test/ui/fn/implied-bounds-unnorm-associated-type.stderr
Auto merge of #93718 - thomcc:used-macho, r=pnkfelix
[rust.git] / src / test / ui / fn / implied-bounds-unnorm-associated-type.stderr
1 error: lifetime may not live long enough
2   --> $DIR/implied-bounds-unnorm-associated-type.rs:14:5
3    |
4 LL | fn f<'a, 'b>(s: &'b str, _: <&'a &'b () as Trait>::Type) -> &'a str {
5    |      --  -- lifetime `'b` defined here
6    |      |
7    |      lifetime `'a` defined here
8 LL |     s
9    |     ^ function was supposed to return data with lifetime `'a` but it is returning data with lifetime `'b`
10    |
11    = help: consider adding the following bound: `'b: 'a`
12
13 error: aborting due to previous error
14