| 4 | type Result<T> = std::result::Result<T, Box<dyn error::Error>>; |
| 5 | |
| 6 | struct List { |
| 7 | next: Option<Box<List>>, |
| 8 | value: i32, |
| 9 | } |
| 10 | |
| 11 | fn main() -> Result<()> { |
| 12 | let a = Box::new(5); |
nothing calls this directly
no outgoing calls
no test coverage detected