public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/110064] New: spurious missing initializer for member for anonymous
@ 2023-05-31 15:43 barry.revzin at gmail dot com
  2023-06-02  7:36 ` [Bug c++/110064] " rguenth at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: barry.revzin at gmail dot com @ 2023-05-31 15:43 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 110064
           Summary: spurious missing initializer for member for anonymous
           Product: gcc
           Version: 13.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: barry.revzin at gmail dot com
  Target Milestone: ---

This program (reduced from StackOverflow:
https://stackoverflow.com/q/76375145/2069064):

struct B { };
struct D : B {
    int x;
    int y;
};

int main(int, char**) {
    D d = {.x=1, .y=2};
    (void)d;
}

with -Wall -Wextra gives a warning on:

<source>:8:22: warning: missing initializer for member 'D::<anonymous>'
[-Wmissing-field-initializers]
    8 |     D d = {.x=1, .y=2};
      |      

But there's... no member here that isn't initialized.

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

end of thread, other threads:[~2023-07-19 20:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-31 15:43 [Bug c++/110064] New: spurious missing initializer for member for anonymous barry.revzin at gmail dot com
2023-06-02  7:36 ` [Bug c++/110064] " rguenth at gcc dot gnu.org
2023-06-05 20:34 ` mpolacek at gcc dot gnu.org
2023-07-19 20:31 ` cvs-commit at gcc dot gnu.org
2023-07-19 20:32 ` mpolacek 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).