()
| 7 | } |
| 8 | impl Person { |
| 9 | fn new() -> Self { |
| 10 | Self { |
| 11 | personal_names: String::new(), |
| 12 | family_names: String::new(), |
| 13 | } |
| 14 | } |
| 15 | fn naming(&self) -> String { |
| 16 | format!("{} {}", |
| 17 | self.personal_names, |
nothing calls this directly
no outgoing calls
no test coverage detected