llvm/lldb/test/API/python_api/value/change_values/libcxx/map/main.cpp

#include <map>

int main()
{
    std::map<int, int> M = {{1,1},{2,2}};
    return M[1]; // Set break point at this line.
}