public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "danakj at orodu dot net" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/110158] Cannot use union with std::string inside in constant expression
Date: Fri, 04 Aug 2023 16:16:26 +0000	[thread overview]
Message-ID: <bug-110158-4-BeTNlNcV1f@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-110158-4@http.gcc.gnu.org/bugzilla/>

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

--- Comment #4 from danakj at orodu dot net ---
Here's a repro without the std::string inside a union. It is the SSO union
inside the string that causes the error.

https://gcc.godbolt.org/z/T8oM8vYnq

```
#include <string>

template <class T, class I, class S, class F>
constexpr T fold(T init, I i, S s, F f) {
    while (true) {
        if (i == s)
            return init;
        else
            init = f(std::move(init), *i++);
    }
}

constexpr char v[] = {'a', 'b', 'c'};
static_assert(fold(std::string(), std::begin(v), std::end(v),
                   [](std::string acc, char v) {
                       acc.push_back(v);
                       return acc;
                   }) == "abc");

int main() {}
```

<source>:18:23: error: non-constant condition for static assertion
   14 | static_assert(fold(std::string(), std::begin(v), std::end(v),
      |               ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   15 |                    [](std::string acc, char v) {
      |                    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   16 |                        acc.push_back(v);
      |                        ~~~~~~~~~~~~~~~~~
   17 |                        return acc;
      |                        ~~~~~~~~~~~
   18 |                    }) == "abc");
      |                    ~~~^~~~~~~~
<source>:18:32:   in 'constexpr' expansion of 'fold(T, I, S, F) [with T =
std::__cxx11::basic_string<char>; I = const char*; S = const char*; F =
<lambda(std::string, char)>](std::begin<const char, 3>(v), std::end<const char,
3>(v), (<lambda closure object><lambda(std::string, char)>(),
<lambda(std::string, char)>()))'
<source>:18:32:   in 'constexpr' expansion of
'std::__cxx11::basic_string<char>((* &
std::move<__cxx11::basic_string<char>&>(init)))'
<source>:18:23: error: accessing 'std::__cxx11::basic_string<char>::<unnamed
union>::_M_allocated_capacity' member instead of initialized
'std::__cxx11::basic_string<char>::<unnamed union>::_M_local_buf' member in
constant expression
ASM generation compiler returned: 1

  parent reply	other threads:[~2023-08-04 16:16 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-07 15:22 [Bug libstdc++/110158] New: " fchelnokov at gmail dot com
2023-06-07 19:40 ` [Bug c++/110158] " pinskia at gcc dot gnu.org
2023-08-03 17:11 ` ppalka at gcc dot gnu.org
2023-08-04 15:55 ` pinskia at gcc dot gnu.org
2023-08-04 16:16 ` danakj at orodu dot net [this message]
2023-09-06 18:11 ` danakj at orodu dot net
2023-09-06 18:18 ` danakj at orodu dot net
2023-09-29 11:08 ` redi at gcc dot gnu.org
2023-11-22  0:45 ` ppalka at gcc dot gnu.org
2023-11-22 11:54 ` redi 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-110158-4-BeTNlNcV1f@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).