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

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