#include "structures.h" void foo() { std::vector v; int n = 100; for (int i = 0; i < n; ++i) { v.push_back(n); } }