Find why adding a generic lifetime does not make this generated function valid.
Rust
fn status_text<'a>() -> &'a str {
let status = String::from("ready");
status.as_str()
}
fn status_text<'a>() -> &'a str {
let status = String::from("ready");
status.as_str()
}