]> git.proxmox.com Git - rustc.git/blob - src/test/ui/span/borrowck-let-suggestion-suffixes.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / span / borrowck-let-suggestion-suffixes.stderr
1 error[E0597]: `young[_]` does not live long enough
2 --> $DIR/borrowck-let-suggestion-suffixes.rs:12:17
3 |
4 LL | v2.push(&young[0]); // statement 4
5 | ^^^^^^^^^ borrowed value does not live long enough
6 ...
7 LL | }
8 | - `young[_]` dropped here while still borrowed
9 ...
10 LL | (v1, v2, v3, /* v4 is above. */ v5).use_ref();
11 | -- borrow later used here
12
13 error[E0716]: temporary value dropped while borrowed
14 --> $DIR/borrowck-let-suggestion-suffixes.rs:19:14
15 |
16 LL | v3.push(&id('x')); // statement 6
17 | ^^^^^^^ - temporary value is freed at the end of this statement
18 | |
19 | creates a temporary which is freed while still in use
20 ...
21 LL | (v1, v2, v3, /* v4 is above. */ v5).use_ref();
22 | -- borrow later used here
23 |
24 help: consider using a `let` binding to create a longer lived value
25 |
26 LL ~ let binding = id('x');
27 LL ~ v3.push(&binding); // statement 6
28 |
29
30 error[E0716]: temporary value dropped while borrowed
31 --> $DIR/borrowck-let-suggestion-suffixes.rs:29:18
32 |
33 LL | v4.push(&id('y'));
34 | ^^^^^^^ - temporary value is freed at the end of this statement
35 | |
36 | creates a temporary which is freed while still in use
37 ...
38 LL | v4.use_ref();
39 | ------------ borrow later used here
40 |
41 = note: consider using a `let` binding to create a longer lived value
42
43 error[E0716]: temporary value dropped while borrowed
44 --> $DIR/borrowck-let-suggestion-suffixes.rs:40:14
45 |
46 LL | v5.push(&id('z'));
47 | ^^^^^^^ - temporary value is freed at the end of this statement
48 | |
49 | creates a temporary which is freed while still in use
50 ...
51 LL | (v1, v2, v3, /* v4 is above. */ v5).use_ref();
52 | -- borrow later used here
53 |
54 help: consider using a `let` binding to create a longer lived value
55 |
56 LL ~ let binding = id('z');
57 LL ~ v5.push(&binding);
58 |
59
60 error: aborting due to 4 previous errors
61
62 Some errors have detailed explanations: E0597, E0716.
63 For more information about an error, try `rustc --explain E0597`.