Find why the generic lifetime does not make this return 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()
}