use rt_lists::third::List;
use rt_lists::third::List; let mut list = List::new(); list.push(1); list.push(2); assert_eq!(list.pop(), Some(2));