I encountered a variant of this code when looking at another question (the original code used a std::thread
instead of std::vector
, but the syntax is the same):
#include <iostream>
#include <vector>
#include <iterator>
#include <algorithm>
int main()
{
std::vector<double> vecs[10] = std::vector<double>(10, 1);
for(auto& vec: vecs){
std::copy(vec.begin(), vec.end(), std::ostream_iterator<double>(std::cout, " "));
std::cout<<std::endl;
}
return 0;
}
This code shouldn't compile; std::vector<double> vecs[10] = std::vector<double>(10, 1);
is not valid initialization syntax, and clang rejects it with error: array initializer must be an initializer list
. However, GCC accepts it and appears to initialize every vector in the list with a copy of the specified temporary.
Is this some GCC extension I've never heard about (that somehow also managed to survive -pedantic-errors
) or just a plain bug?