2018-07-15 21:11:54 +00:00
|
|
|
error[E0597]: `p` does not live long enough
|
2019-04-22 07:40:08 +00:00
|
|
|
--> $DIR/issue-18118.rs:4:9
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2023-04-12 18:45:43 +00:00
|
|
|
LL | let p = 3;
|
|
|
|
| - binding `p` declared here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | &p
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^
|
|
|
|
| |
|
|
|
|
| borrowed value does not live long enough
|
|
|
|
| using this value as a constant requires that `p` is borrowed for `'static`
|
2018-07-15 21:11:54 +00:00
|
|
|
LL | };
|
2019-04-22 07:40:08 +00:00
|
|
|
| - `p` dropped here while still borrowed
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2018-12-28 19:05:22 +00:00
|
|
|
For more information about this error, try `rustc --explain E0597`.
|