public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/97665] New: constexpr union array member incorrectly rejected as non-constexpr
@ 2020-11-01 17:29 ldalessandro at gmail dot com
  2020-11-01 17:31 ` [Bug c++/97665] " ldalessandro at gmail dot com
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: ldalessandro at gmail dot com @ 2020-11-01 17:29 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 97665
           Summary: constexpr union array member incorrectly rejected as
                    non-constexpr
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ldalessandro at gmail dot com
  Target Milestone: ---

GCC currently rejects the following code snippet, where it infers the constexpr
definition of V as non-constexpr. The monostate member provides a temporary
workaround.

https://godbolt.org/z/Ph1n1P

```
struct Foo {
    constexpr Foo() {}
};

union U {
   // struct {} monostate = {};
    Foo foo;
    constexpr U() {}
};

struct V {
    U storage[1];
};

constexpr V v;
```

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

end of thread, other threads:[~2023-06-14  4:02 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-01 17:29 [Bug c++/97665] New: constexpr union array member incorrectly rejected as non-constexpr ldalessandro at gmail dot com
2020-11-01 17:31 ` [Bug c++/97665] " ldalessandro at gmail dot com
2020-11-02 11:55 ` jakub at gcc dot gnu.org
2020-11-02 12:24 ` jakub at gcc dot gnu.org
2020-11-02 17:30 ` ldalessandro at gmail dot com
2020-11-02 17:37 ` ldalessandro at gmail dot com
2020-11-02 17:42 ` jakub at gcc dot gnu.org
2020-11-02 17:49 ` ldalessandro at gmail dot com
2021-08-04 17:06 ` pinskia at gcc dot gnu.org
2021-09-01 21:12 ` pinskia at gcc dot gnu.org
2022-11-22  7:37 ` dysnomia.eris at online dot de
2022-11-23  2:17 ` de34 at live dot cn
2023-06-14  4:02 ` pinskia 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).