#![allow(unused_variables)] fn main() { use std::rc::Rc; let shared: Rc = Rc::from("statue"); assert_eq!("statue", & shared[..]); }