rust/tests/ui/generator/dropck.stderr

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

38 lines
1.3 KiB
Plaintext
Raw Normal View History

error[E0597]: `*cell` does not live long enough
2018-10-04 18:49:38 +00:00
--> $DIR/dropck.rs:10:40
|
LL | let (mut gen, cell);
| ---- binding `cell` declared here
LL | cell = Box::new(RefCell::new(0));
LL | let ref_ = Box::leak(Box::new(Some(cell.borrow_mut())));
2021-09-16 20:01:22 +00:00
| ^^^^^^^^^^^^^^^^^ borrowed value does not live long enough
...
LL | }
| -
| |
| `*cell` dropped here while still borrowed
| borrow might be used here, when `gen` is dropped and runs the destructor for generator
|
= note: values in a scope are dropped in the opposite order they are defined
2018-01-11 18:50:01 +00:00
error[E0597]: `ref_` does not live long enough
2018-10-04 18:49:38 +00:00
--> $DIR/dropck.rs:15:18
2018-01-11 18:50:01 +00:00
|
2018-02-23 00:42:32 +00:00
LL | gen = || {
| -- value captured here by generator
2018-02-24 23:01:39 +00:00
LL | // but the generator can use it to drop a `Ref<'a, i32>`.
2019-03-09 12:03:44 +00:00
LL | let _d = ref_.take();
2018-01-11 18:50:01 +00:00
| ^^^^ borrowed value does not live long enough
...
2018-02-23 00:42:32 +00:00
LL | }
| -
| |
| `ref_` dropped here while still borrowed
| borrow might be used here, when `gen` is dropped and runs the destructor for generator
2018-01-11 18:50:01 +00:00
|
= note: values in a scope are dropped in the opposite order they are defined
2018-01-11 18:50:01 +00:00
error: aborting due to 2 previous errors
2018-01-11 18:50:01 +00:00
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0597`.