#![allow(unused_variables)] fn main() { let s1: String = String::from("hello world"); let s2: Box = Box::from(s1); let s3: String = String::from(s2); assert_eq!("hello world", s3) }