public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/109640] New: Spurious Wdangling-reference for argument to temporary lambda cast to rvalue reference
@ 2023-04-26 23:24 ed at catmur dot uk
  2023-04-26 23:40 ` [Bug c++/109640] " pinskia at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: ed at catmur dot uk @ 2023-04-26 23:24 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 109640
           Summary: Spurious Wdangling-reference for argument to temporary
                    lambda cast to rvalue reference
           Product: gcc
           Version: 13.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ed at catmur dot uk
  Target Milestone: ---

bool b() {
    int a;
    int&& i = [](int& r) -> int&& { return static_cast<int&&>(r); }(a);
    auto const l = [](int& r) -> int&& { return static_cast<int&&>(r); };
    int&& j = l(a);
    return &i == &j;
}

<source>: In function 'bool b()':
<source>:3:11: warning: possibly dangling reference to a temporary
[-Wdangling-reference]
    3 |     int&& i = [](int& r) -> int&& { return static_cast<int&&>(r); }(a);
      |           ^
<source>:3:68: note: the temporary was destroyed at the end of the full
expression '<lambda closure
object>b()::<lambda(int&)>().b()::<lambda(int&)>(a)'
    3 |     int&& i = [](int& r) -> int&& { return static_cast<int&&>(r); }(a);
      |               ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~

The heuristic appears to be confused by the lambda itself being a temporary,
even though it is captureless.

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

end of thread, other threads:[~2024-01-30 18:24 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-26 23:24 [Bug c++/109640] New: Spurious Wdangling-reference for argument to temporary lambda cast to rvalue reference ed at catmur dot uk
2023-04-26 23:40 ` [Bug c++/109640] " pinskia at gcc dot gnu.org
2023-04-26 23:59 ` ed at catmur dot uk
2023-04-27 15:54 ` mpolacek at gcc dot gnu.org
2023-05-02 19:49 ` cvs-commit at gcc dot gnu.org
2024-01-18 23:05 ` mpolacek at gcc dot gnu.org
2024-01-23 21:36 ` cvs-commit at gcc dot gnu.org
2024-01-23 22:35 ` mpolacek at gcc dot gnu.org
2024-01-30 18:24 ` 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).