]> git.lizzy.rs Git - rust.git/blob - src/test/ui/generator/dropck.stderr
Auto merge of #102655 - joboet:windows_tls_opt, r=ChrisDenton
[rust.git] / src / test / ui / generator / dropck.stderr
1 error[E0597]: `*cell` does not live long enough
2   --> $DIR/dropck.rs:10:40
3    |
4 LL |     let ref_ = Box::leak(Box::new(Some(cell.borrow_mut())));
5    |                                        ^^^^^^^^^^^^^^^^^ borrowed value does not live long enough
6 ...
7 LL | }
8    | -
9    | |
10    | `*cell` dropped here while still borrowed
11    | borrow might be used here, when `gen` is dropped and runs the destructor for generator
12    |
13    = note: values in a scope are dropped in the opposite order they are defined
14
15 error[E0597]: `ref_` does not live long enough
16   --> $DIR/dropck.rs:15:18
17    |
18 LL |     gen = || {
19    |           -- value captured here by generator
20 LL |         // but the generator can use it to drop a `Ref<'a, i32>`.
21 LL |         let _d = ref_.take();
22    |                  ^^^^ borrowed value does not live long enough
23 ...
24 LL | }
25    | -
26    | |
27    | `ref_` dropped here while still borrowed
28    | borrow might be used here, when `gen` is dropped and runs the destructor for generator
29    |
30    = note: values in a scope are dropped in the opposite order they are defined
31
32 error: aborting due to 2 previous errors
33
34 For more information about this error, try `rustc --explain E0597`.