mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
656db98bd9
CC #99430
17 lines
494 B
Plaintext
17 lines
494 B
Plaintext
error[E0597]: `b` does not live long enough
|
|
--> $DIR/mut-ptr-cant-outlive-ref.rs:8:15
|
|
|
|
|
LL | let b = m.borrow();
|
|
| - binding `b` declared here
|
|
LL | p = &*b;
|
|
| ^ borrowed value does not live long enough
|
|
LL | }
|
|
| - `b` dropped here while still borrowed
|
|
LL |
|
|
LL | p.use_ref();
|
|
| ----------- borrow later used here
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|