()
| 1443 | mod my_mod { |
| 1444 | #[allow(dead_code)] |
| 1445 | fn private_function() { } // Items in modules default to private visibility. |
| 1446 | |
| 1447 | #[allow(dead_code)] |
| 1448 | pub fn function() {} // Use the `pub` modifier to override default visibility. |
nothing calls this directly
no outgoing calls
no test coverage detected