mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
MozReview-Commit-ID: IWxzKfWNIHG --HG-- extra : rebase_source : d2bd65c66541e5d6e8d5cc721b117f0a3e7716e8
10 lines
No EOL
132 B
C++
10 lines
No EOL
132 B
C++
#include "structures.h"
|
|
|
|
void foo()
|
|
{
|
|
std::vector<int> v;
|
|
int n = 100;
|
|
for (int i = 0; i < n; ++i) {
|
|
v.push_back(n);
|
|
}
|
|
} |