public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/59005] New: Having designated inits in C++ with -std=c++11 does not cause any errors
@ 2013-11-05 13:52 p.micolet at gmail dot com
  2013-11-05 13:59 ` [Bug c++/59005] " redi at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: p.micolet at gmail dot com @ 2013-11-05 13:52 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59005

            Bug ID: 59005
           Summary: Having designated inits in C++ with -std=c++11 does
                    not cause any errors
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: p.micolet at gmail dot com

This piece of code:

#include <iostream>
using namespace std;

int main(int argc, char** argv)
{
    int test[2][2] ={
        [0]={1,2},
        [1]={3,4},
    };

    for (int x = 0; x<2;x++)
    {
        for (int y = 0; y<2; y++)
        {
            cout << test[x][y] << endl;
        }
    }

    return 0;
}

will compile and execute fine when running:

g++ -Wall -std=c++11 -pedantic test.cpp

No errors or warnings are shown, even if designated initializers are not
supported in the C++11 standard. 

Using: GCC 4.8.1
Target: x86_64-suse-linux
Flags: -Wall -std=c++11 -pedantic


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-11-05 23:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-05 13:52 [Bug c++/59005] New: Having designated inits in C++ with -std=c++11 does not cause any errors p.micolet at gmail dot com
2013-11-05 13:59 ` [Bug c++/59005] " redi at gcc dot gnu.org
2013-11-05 22:40 ` daniel.kruegler at googlemail dot com
2013-11-05 22:49 ` redi at gcc dot gnu.org
2013-11-05 23:02 ` p.micolet at gmail dot com
2013-11-05 23:20 ` redi at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).