rust/src/test/ui/issues/issue-18118.stderr

15 lines
437 B
Plaintext
Raw Normal View History

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