]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-type-bounds/implied-region-constraints.nll.stderr
Merge commit '3e7c6dec244539970b593824334876f8b6ed0b18' into clippyup
[rust.git] / src / test / ui / associated-type-bounds / implied-region-constraints.nll.stderr
1 error: lifetime may not live long enough
2   --> $DIR/implied-region-constraints.rs:17:56
3    |
4 LL | fn _bad_st<'a, 'b, T>(x: St<'a, 'b, T>)
5    |            --  -- lifetime `'b` defined here
6    |            |
7    |            lifetime `'a` defined here
8 ...
9 LL |     let _failure_proves_not_implied_outlives_region_b: &'b T = &x.f0;
10    |                                                        ^^^^^ type annotation requires that `'a` must outlive `'b`
11    |
12    = help: consider adding the following bound: `'a: 'b`
13
14 error: lifetime may not live long enough
15   --> $DIR/implied-region-constraints.rs:38:64
16    |
17 LL | fn _bad_en7<'a, 'b, T>(x: En7<'a, 'b, T>)
18    |             --  -- lifetime `'b` defined here
19    |             |
20    |             lifetime `'a` defined here
21 ...
22 LL |             let _failure_proves_not_implied_outlives_region_b: &'b T = &x;
23    |                                                                ^^^^^ type annotation requires that `'a` must outlive `'b`
24    |
25    = help: consider adding the following bound: `'a: 'b`
26
27 error: aborting due to 2 previous errors
28