| 2 | #include <set> |
| 3 | |
| 4 | int main() |
| 5 | { |
| 6 | std::set<int> example = {1, 2, 3, 4}; |
| 7 | |
| 8 | if (example.contains(2)) { |
| 9 | std::cout << "Found\n"; |
| 10 | } else { |
| 11 | std::cout << "Not found\n"; |
| 12 | } |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected