aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/benchmarks/libcxxlist/main.cpp
blob: 9c4113ad0514eb404d635dca24fcf077cddb30fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <list>

int main()
{
    std::list<int> list;
    for (int i = 0;
    i < 1500;
    i++)
        list.push_back(i);
    return list.size(); // break here
}