2019-01-17 20:03:58 +00:00
|
|
|
error[E0597]: `l` does not live long enough
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/promoted-bounds.rs:19:17
|
2019-01-17 20:03:58 +00:00
|
|
|
|
|
|
|
|
LL | let ptr = {
|
|
|
|
| --- borrow later stored here
|
|
|
|
LL | let l = 3;
|
2023-01-15 03:06:44 +00:00
|
|
|
| - binding `l` declared here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let b = &l;
|
2019-01-17 20:03:58 +00:00
|
|
|
| ^^ borrowed value does not live long enough
|
|
|
|
...
|
|
|
|
LL | };
|
|
|
|
| - `l` dropped here while still borrowed
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-01-17 20:03:58 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0597`.
|