1 2 3 4 5 6
#include <list> int main(int argc, char **argv) { std::list<int> a = {3, 1, 2}; return 0; // Set break point at this line. }