http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59005
--- Comment #4 from p.micolet at gmail dot com ---
Hi Daniel, I think it's a gcc extension, but it's not part of the C++11
standard, so surely adding the -std=c++11 should cause this code to not compile
or am I misunderstanding something ?
Thanks
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59005
--- Comment #1 from p.micolet at gmail dot com ---
Also saw this issue using GCC 4.7.0, same target, same flags and same code
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: p.micolet at gmail dot com
This piece of code:
#include
using namespace std;
int main(int argc, char** argv)
{
int test[2][2] ={
[0]={1,2},
[1]={3,4