| 162 | } |
| 163 | |
| 164 | int main(int, char**) { |
| 165 | try { |
| 166 | uniform_containers(); |
| 167 | mixed_containers(); |
| 168 | insert_stream_operators(); |
| 169 | return 0; |
| 170 | } catch (const std::exception& e) { |
| 171 | std::cerr << std::endl << "error: " << e.what() << std::endl; |
| 172 | } |
| 173 | return 1; |
| 174 | } |
| 175 | |
| 176 | // print_next prints the next value from values by recursively descending into complex values. |
| 177 | // |
nothing calls this directly
no test coverage detected