]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2093-infer-outlives/regions-struct-not-wf.stderr
Rollup merge of #59057 - czipperz:standardize_range_documentation, r=shepmaster
[rust.git] / src / test / ui / rfc-2093-infer-outlives / regions-struct-not-wf.stderr
1 error[E0309]: the parameter type `T` may not live long enough
2   --> $DIR/regions-struct-not-wf.rs:13:5
3    |
4 LL | impl<'a, T> Trait<'a, T> for usize {
5    |          - help: consider adding an explicit lifetime bound `T: 'a`...
6 LL |     type Out = &'a T;
7    |     ^^^^^^^^^^^^^^^^^
8    |
9 note: ...so that the reference type `&'a T` does not outlive the data it points at
10   --> $DIR/regions-struct-not-wf.rs:13:5
11    |
12 LL |     type Out = &'a T;
13    |     ^^^^^^^^^^^^^^^^^
14
15 error[E0309]: the parameter type `T` may not live long enough
16   --> $DIR/regions-struct-not-wf.rs:21:5
17    |
18 LL | impl<'a, T> Trait<'a, T> for u32 {
19    |          - help: consider adding an explicit lifetime bound `T: 'a`...
20 LL |     type Out = RefOk<'a, T>;
21    |     ^^^^^^^^^^^^^^^^^^^^^^^^
22    |
23 note: ...so that the type `T` will meet its required lifetime bounds
24   --> $DIR/regions-struct-not-wf.rs:21:5
25    |
26 LL |     type Out = RefOk<'a, T>;
27    |     ^^^^^^^^^^^^^^^^^^^^^^^^
28
29 error[E0491]: in type `&'a &'b T`, reference has a longer lifetime than the data it references
30   --> $DIR/regions-struct-not-wf.rs:25:5
31    |
32 LL |     type Out = &'a &'b T;
33    |     ^^^^^^^^^^^^^^^^^^^^^
34    |
35 note: the pointer is valid for the lifetime 'a as defined on the impl at 24:6
36   --> $DIR/regions-struct-not-wf.rs:24:6
37    |
38 LL | impl<'a, 'b, T> Trait1<'a, 'b, T> for u32 {
39    |      ^^
40 note: but the referenced data is only valid for the lifetime 'b as defined on the impl at 24:10
41   --> $DIR/regions-struct-not-wf.rs:24:10
42    |
43 LL | impl<'a, 'b, T> Trait1<'a, 'b, T> for u32 {
44    |          ^^
45
46 error: aborting due to 3 previous errors
47
48 Some errors occurred: E0309, E0491.
49 For more information about an error, try `rustc --explain E0309`.