public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/98675] New: Accessing member of temporary outside its lifetime allowed in constexpr function
@ 2021-01-14 11:53 redi at gcc dot gnu.org
  2021-01-14 14:31 ` [Bug c++/98675] " mpolacek at gcc dot gnu.org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: redi at gcc dot gnu.org @ 2021-01-14 11:53 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 98675
           Summary: Accessing member of temporary outside its lifetime
                    allowed in constexpr function
           Product: gcc
           Version: 10.2.1
            Status: UNCONFIRMED
          Keywords: accepts-invalid
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: redi at gcc dot gnu.org
  Target Milestone: ---

struct X {
    int i = 0;

    constexpr int& get() { return i; }
};

constexpr int g()
{
    const auto& i = X{}.get();
    return i;  // undefined
}

constexpr auto i = g();


G++ fails to diagnose the error here.

Clang says:

<source>:13:16: error: constexpr variable 'i' must be initialized by a constant
expression
constexpr auto i = g();
               ^   ~~~
<source>:10:12: note: read of object outside its lifetime is not allowed in a
constant expression
    return i;  // undefined
           ^
<source>:13:20: note: in call to 'g()'
constexpr auto i = g();
                   ^


Intel says:

<source>(13): error: expression must have a constant value
  constexpr auto i = g();
                     ^
<source>(10): note: attempt to access expired storage
      return i;  // undefined
             ^

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

end of thread, other threads:[~2023-07-26  1:45 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-14 11:53 [Bug c++/98675] New: Accessing member of temporary outside its lifetime allowed in constexpr function redi at gcc dot gnu.org
2021-01-14 14:31 ` [Bug c++/98675] " mpolacek at gcc dot gnu.org
2022-01-31  4:23 ` tobi at gcc dot gnu.org
2022-01-31  4:35 ` tobi at gcc dot gnu.org
2022-01-31  4:43 ` pinskia at gcc dot gnu.org
2022-01-31 11:44 ` tobi at gcc dot gnu.org
2023-05-26 15:00 ` pinskia at gcc dot gnu.org
2023-07-26  1:45 ` cvs-commit 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).