(val: i32)
| 8 | impl ListNode { |
| 9 | #[inline] |
| 10 | fn new(val: i32) -> Self { |
| 11 | ListNode { |
| 12 | next: None, |
| 13 | val |
| 14 | } |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | pub fn merge_nodes(head: Option<Box<ListNode>>) -> Option<Box<ListNode>> { |
nothing calls this directly
no outgoing calls
no test coverage detected