]> git.proxmox.com Git - rustc.git/blob - src/test/ui/span/destructor-restrictions.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / span / destructor-restrictions.stderr
1 error[E0597]: `*a` does not live long enough
2 --> $DIR/destructor-restrictions.rs:8:10
3 |
4 LL | *a.borrow() + 1
5 | ^---------
6 | |
7 | borrowed value does not live long enough
8 | a temporary with access to the borrow is created here ...
9 LL | };
10 | -- ... and the borrow might be used here, when that temporary is dropped and runs the destructor for type `Ref<'_, i32>`
11 | |
12 | `*a` dropped here while still borrowed
13 |
14 = note: the temporary is part of an expression at the end of a block;
15 consider forcing this temporary to be dropped sooner, before the block's local variables are dropped
16 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
17 |
18 LL | let x = *a.borrow() + 1; x
19 | ^^^^^^^ ^^^
20
21 error: aborting due to previous error
22
23 For more information about this error, try `rustc --explain E0597`.