| 18 | } |
| 19 | |
| 20 | int main() { |
| 21 | std::string str = R"(C:\\What\\The\\Fxxk)"; |
| 22 | std::cout << str << std::endl; |
| 23 | |
| 24 | int value = 0b1001010101010; |
| 25 | std::cout << value << std::endl; |
| 26 | |
| 27 | |
| 28 | auto str = "abc"_wow1; |
| 29 | auto num = 1_wow2; |
| 30 | std::cout << str << std::endl; |
| 31 | std::cout << num << std::endl; |
| 32 | return 0; |
| 33 | } |
nothing calls this directly
no outgoing calls
no test coverage detected