#![allow(unused_variables)] fn main() { fn takes_str(s: &str) {} let s = String::from("Hello"); takes_str(&s); }