dev-m1-macbook
Results
1
issues of
dev-m1-macbook
the following code errors with `list` does not live long enough error in rust 2021 edition ```rust #[test] fn peek() { let mut list = List::new(); assert!(list.peek_front().is_none()); list.push_front(1); list.push_front(2); list.push_front(3);...