public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/110463] New: Mutable subobject is usable in a constant expression
@ 2023-06-28 17:15 fchelnokov at gmail dot com
  2023-06-28 17:29 ` [Bug c++/110463] [13/14 Regression] " ppalka at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: fchelnokov at gmail dot com @ 2023-06-28 17:15 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 110463
           Summary: Mutable subobject is usable in a constant expression
           Product: gcc
           Version: 13.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: fchelnokov at gmail dot com
  Target Milestone: ---

The following program is invalid per
https://timsong-cpp.github.io/cppwp/n4861/expr.const#4.8 (An object or
reference is usable in constant expressions if it is ... a non-mutable
subobject)

struct U {
    mutable int x = 2;
};

int main() {
    constexpr U u{};
    u.x = 1;
    static_assert( u.x == 2 ); // must fail, but ok in GCC
}

but GCC accepts it. Online demo: https://gcc.godbolt.org/z/n8MYzhbad

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

end of thread, other threads:[~2023-07-01 18:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-28 17:15 [Bug c++/110463] New: Mutable subobject is usable in a constant expression fchelnokov at gmail dot com
2023-06-28 17:29 ` [Bug c++/110463] [13/14 Regression] " ppalka at gcc dot gnu.org
2023-06-29 20:10 ` cvs-commit at gcc dot gnu.org
2023-07-01  1:28 ` cvs-commit at gcc dot gnu.org
2023-07-01  1:29 ` ppalka at gcc dot gnu.org
2023-07-01 18:06 ` fchelnokov at gmail dot com

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).