summaryrefslogtreecommitdiffstats
path: root/packages/Python/lldbsuite/test/benchmarks/libcxxmap/main.cpp
blob: 45efb26b6b04050fc42498e17fb10514a6d20a31 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <map>

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