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