| 22 | } |
| 23 | |
| 24 | std::string CcI2SFreeNoexcept(const std::string& str, int x) noexcept |
| 25 | { |
| 26 | return str + std::to_string(x); |
| 27 | } |
| 28 | |
| 29 | auto CcI2SLambda = [](const std::string& str, int x) { return CcI2SFree(str, x); }; |
| 30 |
no outgoing calls
no test coverage detected