mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 03:55:48 -04: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
|
|
}
|