rust/src/test/ui/span/borrowck-let-suggestion-suffixes.stderr

53 lines
1.7 KiB
Plaintext
Raw Normal View History

2017-05-27 12:58:52 -05:00
error[E0597]: `young[..]` does not live long enough
--> $DIR/borrowck-let-suggestion-suffixes.rs:52:1
|
19 | v2.push(&young[0]); // statement 4
| -------- borrow occurs here
...
52 | }
| ^ `young[..]` dropped here while still borrowed
|
= note: values in a scope are dropped in the opposite order they are created
2017-05-27 12:58:52 -05:00
error[E0597]: borrowed value does not live long enough
--> $DIR/borrowck-let-suggestion-suffixes.rs:24:18
|
24 | v3.push(&'x'); // statement 6
| --- ^ temporary value dropped here while still borrowed
| |
| temporary value created here
...
52 | }
| - temporary value needs to live until here
|
= note: consider using a `let` binding to increase its lifetime
2017-05-27 12:58:52 -05:00
error[E0597]: borrowed value does not live long enough
--> $DIR/borrowck-let-suggestion-suffixes.rs:34:22
|
34 | v4.push(&'y');
| --- ^ temporary value dropped here while still borrowed
| |
| temporary value created here
...
40 | } // (statement 7)
| - temporary value needs to live until here
|
= note: consider using a `let` binding to increase its lifetime
2017-05-27 12:58:52 -05:00
error[E0597]: borrowed value does not live long enough
--> $DIR/borrowck-let-suggestion-suffixes.rs:45:18
|
45 | v5.push(&'z');
| --- ^ temporary value dropped here while still borrowed
| |
| temporary value created here
...
52 | }
| - temporary value needs to live until here
|
= note: consider using a `let` binding to increase its lifetime
error: aborting due to previous error(s)