#C Container with begin
| 14 | |
| 15 | struct OtherContainer { // #C Container with begin |
| 16 | int* begin() |
| 17 | { |
| 18 | std::cout << "OtherContainer::begin()\n"; |
| 19 | return nullptr; |
| 20 | } |
| 21 | }; |
| 22 | |
| 23 | void Use(auto& c) |
nothing calls this directly
no outgoing calls
no test coverage detected