]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/regions-outlives-projection-container.base.stderr
Use the same message as type & const generics.
[rust.git] / src / test / ui / regions / regions-outlives-projection-container.base.stderr
1 error[E0491]: in type `&'a WithAssoc<TheType<'b>>`, reference has a longer lifetime than the data it references
2   --> $DIR/regions-outlives-projection-container.rs:40:13
3    |
4 LL |     let _x: &'a WithAssoc<TheType<'b>> = loop { };
5    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7 note: the pointer is valid for the lifetime `'a` as defined here
8   --> $DIR/regions-outlives-projection-container.rs:32:15
9    |
10 LL | fn with_assoc<'a,'b>() {
11    |               ^^
12 note: but the referenced data is only valid for the lifetime `'b` as defined here
13   --> $DIR/regions-outlives-projection-container.rs:32:18
14    |
15 LL | fn with_assoc<'a,'b>() {
16    |                  ^^
17
18 error[E0491]: in type `&'a WithoutAssoc<TheType<'b>>`, reference has a longer lifetime than the data it references
19   --> $DIR/regions-outlives-projection-container.rs:59:13
20    |
21 LL |     let _x: &'a WithoutAssoc<TheType<'b>> = loop { };
22    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
23    |
24 note: the pointer is valid for the lifetime `'a` as defined here
25   --> $DIR/regions-outlives-projection-container.rs:55:18
26    |
27 LL | fn without_assoc<'a,'b>() {
28    |                  ^^
29 note: but the referenced data is only valid for the lifetime `'b` as defined here
30   --> $DIR/regions-outlives-projection-container.rs:55:21
31    |
32 LL | fn without_assoc<'a,'b>() {
33    |                     ^^
34
35 error[E0491]: in type `&'a WithAssoc<TheType<'b>>`, reference has a longer lifetime than the data it references
36   --> $DIR/regions-outlives-projection-container.rs:69:12
37    |
38 LL |     call::<&'a WithAssoc<TheType<'b>>>();
39    |            ^^^^^^^^^^^^^^^^^^^^^^^^^^
40    |
41 note: the pointer is valid for the lifetime `'a` as defined here
42   --> $DIR/regions-outlives-projection-container.rs:64:20
43    |
44 LL | fn call_with_assoc<'a,'b>() {
45    |                    ^^
46 note: but the referenced data is only valid for the lifetime `'b` as defined here
47   --> $DIR/regions-outlives-projection-container.rs:64:23
48    |
49 LL | fn call_with_assoc<'a,'b>() {
50    |                       ^^
51
52 error[E0491]: in type `&'a WithoutAssoc<TheType<'b>>`, reference has a longer lifetime than the data it references
53   --> $DIR/regions-outlives-projection-container.rs:77:12
54    |
55 LL |     call::<&'a WithoutAssoc<TheType<'b>>>();
56    |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
57    |
58 note: the pointer is valid for the lifetime `'a` as defined here
59   --> $DIR/regions-outlives-projection-container.rs:74:23
60    |
61 LL | fn call_without_assoc<'a,'b>() {
62    |                       ^^
63 note: but the referenced data is only valid for the lifetime `'b` as defined here
64   --> $DIR/regions-outlives-projection-container.rs:74:26
65    |
66 LL | fn call_without_assoc<'a,'b>() {
67    |                          ^^
68
69 error: aborting due to 4 previous errors
70
71 For more information about this error, try `rustc --explain E0491`.