| 171 | { |
| 172 | struct Initializable { |
| 173 | int initialize(ApplicationContext&, const Any&) { |
| 174 | initialized = 1; |
| 175 | return 0; |
| 176 | } |
| 177 | int initialize(ApplicationContext&) { |
| 178 | initialized = 2; |
| 179 | return 0; |
nothing calls this directly
no outgoing calls
no test coverage detected