]> git.proxmox.com Git - rustc.git/blame - src/test/ui/nll/outlives-suggestion-more.stderr
New upstream version 1.57.0+dfsg1
[rustc.git] / src / test / ui / nll / outlives-suggestion-more.stderr
CommitLineData
60c5eb7d
XL
1error: lifetime may not live long enough
2 --> $DIR/outlives-suggestion-more.rs:7:5
3 |
4LL | fn foo1<'a, 'b, 'c, 'd>(x: &'a usize, y: &'b usize) -> (&'c usize, &'d usize) {
5 | -- -- lifetime `'c` defined here
6 | |
7 | lifetime `'a` defined here
8LL | (x, y)
9 | ^^^^^^ returning this value requires that `'a` must outlive `'c`
10 |
11 = help: consider adding the following bound: `'a: 'c`
12
13error: lifetime may not live long enough
14 --> $DIR/outlives-suggestion-more.rs:7:5
15 |
16LL | fn foo1<'a, 'b, 'c, 'd>(x: &'a usize, y: &'b usize) -> (&'c usize, &'d usize) {
17 | -- -- lifetime `'d` defined here
18 | |
19 | lifetime `'b` defined here
20LL | (x, y)
21 | ^^^^^^ returning this value requires that `'b` must outlive `'d`
22 |
23 = help: consider adding the following bound: `'b: 'd`
24
25help: the following changes may resolve your lifetime errors
26 |
27 = help: add bound `'a: 'c`
28 = help: add bound `'b: 'd`
29
30error: lifetime may not live long enough
31 --> $DIR/outlives-suggestion-more.rs:13:5
32 |
33LL | fn foo2<'a, 'b, 'c>(x: &'a usize, y: &'b usize) -> (&'c usize, &'static usize) {
34 | -- -- lifetime `'c` defined here
35 | |
36 | lifetime `'a` defined here
37LL | (x, y)
38 | ^^^^^^ returning this value requires that `'a` must outlive `'c`
39 |
40 = help: consider adding the following bound: `'a: 'c`
41
42error: lifetime may not live long enough
43 --> $DIR/outlives-suggestion-more.rs:13:5
44 |
45LL | fn foo2<'a, 'b, 'c>(x: &'a usize, y: &'b usize) -> (&'c usize, &'static usize) {
46 | -- lifetime `'b` defined here
47LL | (x, y)
48 | ^^^^^^ returning this value requires that `'b` must outlive `'static`
60c5eb7d
XL
49
50help: the following changes may resolve your lifetime errors
51 |
52 = help: add bound `'a: 'c`
53 = help: replace `'b` with `'static`
54
55error: lifetime may not live long enough
56 --> $DIR/outlives-suggestion-more.rs:23:5
57 |
58LL | fn foo3<'a, 'b, 'c, 'd, 'e>(
59 | -- -- lifetime `'b` defined here
60 | |
61 | lifetime `'a` defined here
62...
63LL | (x, y, z)
64 | ^^^^^^^^^ function was supposed to return data with lifetime `'b` but it is returning data with lifetime `'a`
65 |
66 = help: consider adding the following bound: `'a: 'b`
67
68error: lifetime may not live long enough
69 --> $DIR/outlives-suggestion-more.rs:23:5
70 |
71LL | fn foo3<'a, 'b, 'c, 'd, 'e>(
72 | -- -- lifetime `'b` defined here
73 | |
74 | lifetime `'a` defined here
75...
76LL | (x, y, z)
77 | ^^^^^^^^^ function was supposed to return data with lifetime `'a` but it is returning data with lifetime `'b`
78 |
79 = help: consider adding the following bound: `'b: 'a`
80
81error: lifetime may not live long enough
82 --> $DIR/outlives-suggestion-more.rs:23:5
83 |
84LL | fn foo3<'a, 'b, 'c, 'd, 'e>(
85 | -- lifetime `'c` defined here
86...
87LL | (x, y, z)
88 | ^^^^^^^^^ returning this value requires that `'c` must outlive `'static`
60c5eb7d
XL
89
90help: the following changes may resolve your lifetime errors
91 |
92 = help: `'a` and `'b` must be the same: replace one with the other
93 = help: replace `'c` with `'static`
94
95error: aborting due to 7 previous errors
96