bolt/deps/llvm-18.1.8/lldb/test/API/benchmarks/libcxxmap/main.cpp
2025-02-14 19:21:04 +01:00

11 lines
159 B
C++

#include <map>
int main()
{
std::map<int, int> map;
for (int i = 0;
i < 1500;
i++)
map[i] = i;
return map.size(); // break here
}