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

* [Bug c++/104490] Cannot inherit consteval constructor
  2022-02-10 16:14 [Bug c++/104490] New: Cannot inherit consteval constructor fchelnokov at gmail dot com
@ 2022-02-10 16:23 ` jakub at gcc dot gnu.org
  2022-02-10 21:39 ` pinskia at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: jakub at gcc dot gnu.org @ 2022-02-10 16:23 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Related to PR104000.

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

* [Bug c++/104490] Cannot inherit consteval constructor
  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
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-02-10 21:39 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |rejects-valid
           See Also|                            |https://gcc.gnu.org/bugzill
                   |                            |a/show_bug.cgi?id=104418,
                   |                            |https://gcc.gnu.org/bugzill
                   |                            |a/show_bug.cgi?id=104000

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Also related to PR 104418, the wording on inherit constructors changed between
C++11 and C++17 too.

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

* [Bug c++/104490] Cannot inherit consteval constructor
  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
  4 siblings, 0 replies; 6+ messages in thread
From: ppalka at gcc dot gnu.org @ 2022-06-30 14:23 UTC (permalink / raw)
  To: gcc-bugs

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

Patrick Palka <ppalka at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ldalessandro at gmail dot com

--- Comment #3 from Patrick Palka <ppalka at gcc dot gnu.org> ---
*** Bug 106084 has been marked as a duplicate of this bug. ***

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

* [Bug c++/104490] Cannot inherit consteval constructor
  2022-02-10 16:14 [Bug c++/104490] New: Cannot inherit consteval constructor fchelnokov at gmail dot com
                   ` (2 preceding siblings ...)
  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
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-10-23  0:15 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2022-10-23
             Status|UNCONFIRMED                 |NEW

--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.

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

* [Bug c++/104490] Cannot inherit consteval constructor
  2022-02-10 16:14 [Bug c++/104490] New: Cannot inherit consteval constructor fchelnokov at gmail dot com
                   ` (3 preceding siblings ...)
  2022-10-23  0:15 ` pinskia at gcc dot gnu.org
@ 2023-02-28 17:10 ` ppalka at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: ppalka at gcc dot gnu.org @ 2023-02-28 17:10 UTC (permalink / raw)
  To: gcc-bugs

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

Patrick Palka <ppalka at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gcc@arne-mertz.de

--- Comment #5 from Patrick Palka <ppalka at gcc dot gnu.org> ---
*** Bug 108966 has been marked as a duplicate of this bug. ***

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