| 120 | // ============================================================================ |
| 121 | |
| 122 | interface Logger { |
| 123 | log: (message: string) => void; |
| 124 | } |
| 125 | |
| 126 | function processWithLogging(value: number, logger: Logger): number { |
| 127 | logger.log(`Processing value: ${value}`); |
nothing calls this directly
no outgoing calls
no test coverage detected