| 1521 | // Impls without traits |
| 1522 | |
| 1523 | struct Player { |
| 1524 | _first_name: String, |
| 1525 | _last_name: String, |
| 1526 | } |
| 1527 | |
| 1528 | // Implementation must appear in the same crate as the self type and have the same name as struct |
| 1529 | impl Player { |
nothing calls this directly
no outgoing calls
no test coverage detected