xref: /llvm-project/lldb/test/API/python_api/value/change_values/libcxx/map/main.cpp (revision 92f0e4ccafacb61f7de93e7ef5bd4beb02047086)
1 #include <map>
2 
main()3 int main()
4 {
5     std::map<int, int> M = {{1,1},{2,2}};
6     return M[1]; // Set break point at this line.
7 }
8