#![allow(unused_variables)] #![feature(box_into_inner)] fn main() { let c = Box::new(5); assert_eq!(Box::into_inner(c), 5); }