]> git.proxmox.com Git - rustc.git/blame - src/test/ui/regions/regions-outlives-projection-container-hrtb.migrate.stderr
New upstream version 1.57.0+dfsg1
[rustc.git] / src / test / ui / regions / regions-outlives-projection-container-hrtb.migrate.stderr
CommitLineData
9fa01778 1error[E0491]: in type `&'a WithHrAssoc<TheType<'b>>`, reference has a longer lifetime than the data it references
e1599b0c 2 --> $DIR/regions-outlives-projection-container-hrtb.rs:30:12
9fa01778
XL
3 |
4LL | let _: &'a WithHrAssoc<TheType<'b>> = loop { };
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6 |
c295e0f8 7note: the pointer is valid for the lifetime `'a` as defined here
e1599b0c 8 --> $DIR/regions-outlives-projection-container-hrtb.rs:27:15
9fa01778
XL
9 |
10LL | fn with_assoc<'a,'b>() {
11 | ^^
c295e0f8 12note: but the referenced data is only valid for the lifetime `'b` as defined here
e1599b0c 13 --> $DIR/regions-outlives-projection-container-hrtb.rs:27:18
9fa01778
XL
14 |
15LL | fn with_assoc<'a,'b>() {
16 | ^^
17
18error[E0491]: in type `&'a WithHrAssocSub<TheType<'b>>`, reference has a longer lifetime than the data it references
e1599b0c 19 --> $DIR/regions-outlives-projection-container-hrtb.rs:50:12
9fa01778
XL
20 |
21LL | let _: &'a WithHrAssocSub<TheType<'b>> = loop { };
22 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
23 |
c295e0f8 24note: the pointer is valid for the lifetime `'a` as defined here
e1599b0c 25 --> $DIR/regions-outlives-projection-container-hrtb.rs:46:19
9fa01778
XL
26 |
27LL | fn with_assoc_sub<'a,'b>() {
28 | ^^
c295e0f8 29note: but the referenced data is only valid for the lifetime `'b` as defined here
e1599b0c 30 --> $DIR/regions-outlives-projection-container-hrtb.rs:46:22
9fa01778
XL
31 |
32LL | fn with_assoc_sub<'a,'b>() {
33 | ^^
34
35error: aborting due to 2 previous errors
36
37For more information about this error, try `rustc --explain E0491`.