#![allow(unused_variables)] fn main() { let x = 5; let boxed = Box::new(5); assert_eq!(Box::from(x), boxed); }