rust/tests/ui/nll/closure-requirements/escape-upvar-nested.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.5 KiB
Plaintext
Raw Normal View History

2020-01-10 08:13:05 -06:00
note: external requirements
2018-12-25 09:56:47 -06:00
--> $DIR/escape-upvar-nested.rs:21:32
|
2019-03-09 06:03:44 -06:00
LL | let mut closure1 = || p = &y;
| ^^
|
= note: defining type: test::{closure#0}::{closure#0} with closure substs [
i16,
extern "rust-call" fn(()),
(&'_#1r mut &'_#2r i32, &'_#3r i32),
]
= note: number of external vids: 4
= note: where '_#3r: '_#2r
2020-01-10 08:13:05 -06:00
note: external requirements
2018-12-25 09:56:47 -06:00
--> $DIR/escape-upvar-nested.rs:20:27
|
LL | let mut closure = || {
| ^^
|
= note: defining type: test::{closure#0} with closure substs [
i16,
extern "rust-call" fn(()),
(&'_#1r mut &'_#2r i32, &'_#3r i32),
]
= note: number of external vids: 4
= note: where '_#3r: '_#2r
2020-01-10 08:13:05 -06:00
note: no external requirements
2018-12-25 09:56:47 -06:00
--> $DIR/escape-upvar-nested.rs:13:1
|
LL | fn test() {
| ^^^^^^^^^
|
= note: defining type: test
error[E0597]: `y` does not live long enough
2018-12-25 09:56:47 -06:00
--> $DIR/escape-upvar-nested.rs:21:40
|
LL | let mut closure = || {
| -- value captured here
2019-03-09 06:03:44 -06:00
LL | let mut closure1 = || p = &y;
| ^ borrowed value does not live long enough
...
LL | }
| - `y` dropped here while still borrowed
2022-06-08 13:07:59 -05:00
LL |
LL | deref(p);
| - borrow later used here
error: aborting due to previous error
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0597`.