mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
17 lines
533 B
Text
17 lines
533 B
Text
error[E0597]: `*x` does not live long enough
|
|
--> $DIR/regions-infer-borrow-scope-within-loop.rs:13:20
|
|
|
|
|
LL | let x = make_box();
|
|
| - binding `x` declared here
|
|
...
|
|
LL | y = borrow(&*x);
|
|
| ^^^ borrowed value does not live long enough
|
|
...
|
|
LL | }
|
|
| - `*x` dropped here while still borrowed
|
|
LL | assert!(*y != 0);
|
|
| -- borrow later used here
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|