use std::collections::LinkedList; fn main() { let mut list = LinkedList::new(); list.push_front(8); }