| 10 | #include <string> |
| 11 | |
| 12 | std::string operator"" _wow1(const char *wow1, size_t len) { |
| 13 | return std::string(wow1)+"woooooooooow, amazing"; |
| 14 | } |
| 15 | |
| 16 | std::string operator""_wow2 (unsigned long long i) { |
| 17 | return std::to_string(i)+"woooooooooow, amazing"; |
nothing calls this directly
no outgoing calls
no test coverage detected