#![allow(unused_variables)] fn main() { use std::borrow::Cow; let unboxed = Cow::Owned("hello".to_string()); let boxed: Box = Box::from(unboxed); println!("{boxed}"); }