]> git.lizzy.rs Git - rust.git/blob - tests/ui/span/destructor-restrictions.stderr
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[rust.git] / tests / ui / span / destructor-restrictions.stderr
1 error[E0597]: `*a` does not live long enough
2   --> $DIR/destructor-restrictions.rs:8:10
3    |
4 LL |         let a = Box::new(RefCell::new(4));
5    |             - binding `a` declared here
6 LL |         *a.borrow() + 1
7    |          ^^^^^^^^^^
8    |          |
9    |          borrowed value does not live long enough
10    |          a temporary with access to the borrow is created here ...
11 LL |     };
12    |     -- ... and the borrow might be used here, when that temporary is dropped and runs the destructor for type `Ref<'_, i32>`
13    |     |
14    |     `*a` dropped here while still borrowed
15    |
16    = note: the temporary is part of an expression at the end of a block;
17            consider forcing this temporary to be dropped sooner, before the block's local variables are dropped
18 help: for example, you could save the expression's value in a new local variable `x` and then make `x` be the expression at the end of the block
19    |
20 LL |         let x = *a.borrow() + 1; x
21    |         +++++++                +++
22
23 error: aborting due to previous error
24
25 For more information about this error, try `rustc --explain E0597`.