blob: e83c12461e2945f77a85a2f11e95abb11670717e [file] [log] [blame]
#include <vector>
int main() {
std::vector<int> v;
v.push_back(1);
return 0;
}