| 15 | #endif |
| 16 | |
| 17 | int main(void) { |
| 18 | std::stringstream ss; |
| 19 | fs::path current = "."; |
| 20 | for (auto& entry : fs::directory_iterator(current)) { |
| 21 | ss << entry.path() << std::endl; |
| 22 | } |
| 23 | std::cout << "OK"; |
| 24 | return 0; |
| 25 | } |
nothing calls this directly
no outgoing calls
no test coverage detected