let s: String = String::from("some message"); let b: Box<&String> = Box::<&String>::new(&s); drop(s); let another_box = b; // er