#![allow(unused_variables)] fn main() { use std::rc::Rc; let x = 5; let rc = Rc::new(5); assert_eq!(Rc::from(x), rc); }