| 5 | } |
| 6 | |
| 7 | pub struct Party { |
| 8 | pub at_restaurant: bool, |
| 9 | pub num_people: u8, |
| 10 | pub cake: Cake, |
| 11 | } |
| 12 | |
| 13 | fn main() { |
| 14 | // 1. The code below doesn't work because Cake doesn't implement Debug. |
nothing calls this directly
no outgoing calls
no test coverage detected