rust/tests/ui/static/issue-18118.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
508 B
Plaintext
Raw Normal View History

2018-07-15 21:11:54 +00:00
error[E0597]: `p` does not live long enough
--> $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
| ^^
| |
| 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 | };
| - `p` dropped here while still borrowed
2018-07-15 21:11:54 +00:00
error: aborting due to 1 previous error
2018-07-15 21:11:54 +00:00
For more information about this error, try `rustc --explain E0597`.