1#include <map>
2
3int main()
4{
5 std::map<int, int> map;
6 for (int i = 0;
7 i < 1500;
8 i++)
9 map[i] = i;
10 return map.size(); // break here
11}
12

source code of lldb/test/API/benchmarks/libcxxmap/main.cpp