#include #ifdef _LIBCPP_INLINE_VISIBILITY #undef _LIBCPP_INLINE_VISIBILITY #endif #define _LIBCPP_INLINE_VISIBILITY #include #include typedef std::map intint_map; typedef std::map strint_map; typedef std::vector int_vector; typedef std::vector string_vector; typedef intint_map::iterator iimter; typedef strint_map::iterator simter; typedef int_vector::iterator ivter; typedef string_vector::iterator svter; int main() { intint_map iim; iim[0] = 12; strint_map sim; sim["world"] = 42; int_vector iv; iv.push_back(3); string_vector sv; sv.push_back("hello"); iimter iimI = iim.begin(); simter simI = sim.begin(); ivter ivI = iv.begin(); svter svI = sv.begin(); return 0; // Set break point at this line. }