]> git.lizzy.rs Git - rust.git/blob - tests/ui/regions/regions-outlives-projection-container-hrtb.stderr
internally change regions to be covariant
[rust.git] / tests / ui / regions / regions-outlives-projection-container-hrtb.stderr
1 error: lifetime may not live long enough
2   --> $DIR/regions-outlives-projection-container-hrtb.rs:27:12
3    |
4 LL | fn with_assoc<'a,'b>() {
5    |               -- -- lifetime `'b` defined here
6    |               |
7    |               lifetime `'a` defined here
8 ...
9 LL |     let _: &'a WithHrAssoc<TheType<'b>> = loop { };
10    |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'b` must outlive `'a`
11    |
12    = help: consider adding the following bound: `'b: 'a`
13
14 error: lifetime may not live long enough
15   --> $DIR/regions-outlives-projection-container-hrtb.rs:46:12
16    |
17 LL | fn with_assoc_sub<'a,'b>() {
18    |                   -- -- lifetime `'b` defined here
19    |                   |
20    |                   lifetime `'a` defined here
21 ...
22 LL |     let _: &'a WithHrAssocSub<TheType<'b>> = loop { };
23    |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'b` must outlive `'a`
24    |
25    = help: consider adding the following bound: `'b: 'a`
26
27 error: aborting due to 2 previous errors
28