| 6 | # include <ranges> |
| 7 | |
| 8 | struct Container {}; // #A Container without begin |
| 9 | int* begin(Container) // #B Free-function begin for Container |
| 10 | { |
| 11 | std::cout << "begin(Container)\n"; |
nothing calls this directly
no outgoing calls
no test coverage detected