summaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api/value/change_values/libcxx/map/main.cpp
blob: 4e1ee213e0f3fc268d823471355797780bfb24a7 (plain)
1
2
3
4
5
6
7
#include <map>

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