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