| 4 | #include <string> |
| 5 | |
| 6 | int main() |
| 7 | { |
| 8 | const std::string s{"Hello, C++20"}; |
| 9 | |
| 10 | if(s.starts_with("Hello")) { puts("Found!"); } |
| 11 | |
| 12 | if(s.ends_with("C++20")) { puts("Found!"); } |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected