public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "de34 at live dot cn" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c++/103183] New: ind[arr] produces an lvalue when arr is an array xvalue
Date: Thu, 11 Nov 2021 08:38:25 +0000	[thread overview]
Message-ID: <bug-103183-4@http.gcc.gnu.org/bugzilla/> (raw)

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

            Bug ID: 103183
           Summary: ind[arr] produces an lvalue when arr is an array
                    xvalue
           Product: gcc
           Version: 10.1.0
            Status: UNCONFIRMED
          Keywords: accepts-invalid, rejects-valid
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: de34 at live dot cn
  Target Milestone: ---

With gcc 10 and later versions, the following program compiles in C++11/14
modes, but fails to compile in C++17 and later modes. It compiles in C++17 and
later modes if "int&&" is replaced with "int&" (which is wrong according to
[expr.sub]/2).

#include <type_traits>
#include <utility>

int main()
{
    int arr[]{0};
    static_assert(std::is_same<decltype(0[std::move(arr)]), int&&>::value, "");
}

It seems that arr[ind] doesn't suffer from this bug.

Gcc 9 correctly produced an xvalue in this case.

wandbox links (rejected valid code):
gcc 12.0 (-std=c++17): https://wandbox.org/permlink/HvNaq9T4J7oeYflt
gcc 12.0 (-std=c++14): https://wandbox.org/permlink/S3dhGvKr3aD5OeOW
gcc 10.1 (-std=c++17): https://wandbox.org/permlink/NzqYCtytSUW4oZjR
gcc 10.1 (-std=c++14): https://wandbox.org/permlink/LviIophRujplHx6o
gcc  9.3 (-std=c++17): https://wandbox.org/permlink/JkCQHBdc3xqDSG9s

wandbox links (accepted invalid code, with "int&&" replaced with "int&"):
gcc 12.0 (-std=c++17): https://wandbox.org/permlink/JkCQHBdc3xqDSG9s
gcc 10.1 (-std=c++17): https://wandbox.org/permlink/Yr3Vl2mbeDzGi02v

             reply	other threads:[~2021-11-11  8:38 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-11  8:38 de34 at live dot cn [this message]
2021-11-11  9:56 ` [Bug c++/103183] " pinskia at gcc dot gnu.org
2021-11-11  9:59 ` pinskia at gcc dot gnu.org
2021-11-11 10:00 ` pinskia at gcc dot gnu.org
2023-11-28 17:19 ` [Bug c++/103183] [11/12/13/14 Regression] " ppalka at gcc dot gnu.org
2023-12-21  8:52 ` de34 at live dot cn
2024-03-10  3:21 ` law 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-103183-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).