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

12 lines
423 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0106]: missing lifetime specifier
--> $DIR/issue-13497.rs:12:5
|
LL | &str //~ ERROR missing lifetime specifier
2018-10-18 15:05:38 -05:00
| ^ help: consider giving it a 'static lifetime: `&'static`
2018-07-15 16:11:54 -05:00
|
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
error: aborting due to previous error
For more information about this error, try `rustc --explain E0106`.