Slug: borrow-static-01 · Paired reading: Chapters 6 and 11
Prompt
A junior reaches for Box::leak to satisfy 'static. Don't.
fn owned_staticish(s: &str) -> String — return an owned String
the caller can keep. Prefer ownership over leaking for a fake 'static.