(p: Person)
| 6 | family_names: String, |
| 7 | } |
| 8 | fn naming(p: Person) -> String { |
| 9 | format!("{} {}", |
| 10 | p.personal_names, |
| 11 | p.family_names) |
| 12 | } |
| 13 | let person = Person { |
| 14 | personal_names: "John".to_string(), |
| 15 | family_names: "Doe".to_string(), |
nothing calls this directly
no outgoing calls
no test coverage detected