public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/102201] New: Accepts invalid C++98 with nested class and sizeof of outer's non-static field
@ 2021-09-04 14:07 pinskia at gcc dot gnu.org
  2021-09-04 17:01 ` [Bug c++/102201] " harald at gigawatt dot nl
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-09-04 14:07 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102201

            Bug ID: 102201
           Summary: Accepts invalid C++98 with nested class and sizeof of
                    outer's non-static field
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Keywords: accepts-invalid
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: pinskia at gcc dot gnu.org
  Target Milestone: ---

Take:
struct outer {
    struct inner {
         inner() :x(sizeof(y)) { }
        unsigned int x;
    };
    int y;
};

----- CUT ----
The above code is valid C++11 but invalid C++98 because the field y is
non-static.

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

end of thread, other threads:[~2021-09-08  8:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-04 14:07 [Bug c++/102201] New: Accepts invalid C++98 with nested class and sizeof of outer's non-static field pinskia at gcc dot gnu.org
2021-09-04 17:01 ` [Bug c++/102201] " harald at gigawatt dot nl
2021-09-06 16:03 ` redi at gcc dot gnu.org
2021-09-06 18:42 ` pinskia at gcc dot gnu.org
2021-09-08  8: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).