| 15 | } |
| 16 | |
| 17 | int main() { |
| 18 | std::cout << "Opening file with OUT: \n"; |
| 19 | open_file(IOMode::OUT); |
| 20 | |
| 21 | std::cout << "Opening file with OUT | APP: \n"; |
| 22 | open_file(bit::Flags{IOMode::OUT, IOMode::APP}); |
| 23 | } |
nothing calls this directly
no test coverage detected