public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/104490] New: Cannot inherit consteval constructor
@ 2022-02-10 16:14 fchelnokov at gmail dot com
  2022-02-10 16:23 ` [Bug c++/104490] " jakub at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: fchelnokov at gmail dot com @ 2022-02-10 16:14 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 104490
           Summary: Cannot inherit consteval constructor
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: fchelnokov at gmail dot com
  Target Milestone: ---

This code
```
struct B {
    bool b = true;
    consteval B(int) {}
};

struct C : B {
    using B::B;
};

static_assert( C{1}.b );
```
looks valid and accepted in Clang and MSVC. But GCC rejects it with the error
```
<source>:7:14: error: 'this' is not a constant expression
    7 |     using B::B;
      |              ^
<source>:7:14: error: '<anonymous>' is not a constant expression
```
Demo: https://gcc.godbolt.org/z/fzajKzobn

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

end of thread, other threads:[~2023-02-28 17:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-10 16:14 [Bug c++/104490] New: Cannot inherit consteval constructor fchelnokov at gmail dot com
2022-02-10 16:23 ` [Bug c++/104490] " jakub at gcc dot gnu.org
2022-02-10 21:39 ` pinskia at gcc dot gnu.org
2022-06-30 14:23 ` ppalka at gcc dot gnu.org
2022-10-23  0:15 ` pinskia at gcc dot gnu.org
2023-02-28 17:10 ` ppalka 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).