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

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

15 lines
437 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0597]: `p` does not live long enough
--> $DIR/issue-18118.rs:4:9
2018-07-15 16:11:54 -05:00
|
2019-03-09 06:03:44 -06: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 16:11:54 -05:00
LL | };
| - `p` dropped here while still borrowed
2018-07-15 16:11:54 -05:00
error: aborting due to previous error
2018-07-15 16:11:54 -05:00
For more information about this error, try `rustc --explain E0597`.