mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-09 13:46:07 +00:00
12 lines
159 B
C++
12 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
|
|
}
|