public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/113360] New: Truncated constexpr error messages with -std=c++23/26
Date: Fri, 12 Jan 2024 19:12:59 +0000	[thread overview]
Message-ID: <bug-113360-4@http.gcc.gnu.org/bugzilla/> (raw)

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

            Bug ID: 113360
           Summary: Truncated constexpr error messages with -std=c++23/26
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: mpolacek at gcc dot gnu.org
  Target Milestone: ---

Test by Paul Keir:

constexpr bool init_list()
{
  int total{};
  for (int x : {1, 2, 3})
    total += x;
  return total == 6;
}

static_assert(init_list(), "");

Using -std=c++23, the error message is:

<source>: In function 'constexpr bool init_list()':
<source>:6:24: error: deducing from brace-enclosed initializer list requires
'#include <initializer_list>'
  +++ |+#include <initializer_list>
    1 | // #include <initializer_list>
......
    6 |   for (int x : {1, 2, 3})
      |                        ^
<source>: At global scope:
<source>:11:24: error: non-constant condition for static assertion
   11 | static_assert(init_list(), "");
      |               ~~~~~~~~~^~
<source>:11:24: error: 'constexpr bool init_list()' called in a constant
expression
<source>:3:16: note: 'constexpr bool init_list()' is not usable as a
'constexpr' function because:
    3 | constexpr bool init_list()
      |                ^~~~~~~~~

             reply	other threads:[~2024-01-12 19:13 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-12 19:12 mpolacek at gcc dot gnu.org [this message]
2024-01-12 19:13 ` [Bug c++/113360] [13/14 Regression] " mpolacek at gcc dot gnu.org
2024-01-12 19:13 ` mpolacek at gcc dot gnu.org
2024-01-15 23:38 ` mpolacek at gcc dot gnu.org
2024-01-16 19:25 ` mpolacek at gcc dot gnu.org
2024-02-01 22:44 ` jason at gcc dot gnu.org
2024-03-07 20:51 ` law at gcc dot gnu.org
2024-05-21  9:18 ` [Bug c++/113360] [13/14/15 " jakub at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-113360-4@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).