pub fn fixed_const_fn_error()
const fn hello() -> &'static str{ "Hello" } const Y: &str = hello(); fn main(){ println!("{}", Y); }