public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/112926] New: issues with nested lambdas and decltype of uncaptured local variable
@ 2023-12-08 20:38 ppalka at gcc dot gnu.org
  2023-12-08 20:42 ` [Bug c++/112926] " ppalka at gcc dot gnu.org
  2024-04-13 20:31 ` pinskia at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: ppalka at gcc dot gnu.org @ 2023-12-08 20:38 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 112926
           Summary: issues with nested lambdas and decltype of uncaptured
                    local variable
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ppalka at gcc dot gnu.org
  Target Milestone: ---

Here since the outer lambda has no capture-default, using x outside of an
unevaluated operand wouldn't capture it (despite the by-copy capture-default of
the inner lambda), so the special case in
https://eel.is/c++draft/expr.prim.id.unqual#3 doesn't apply and decltype((x)
should be int& not const int&.

int main() {
  int x;

  [] {
    [=] {
      using type = decltype((x)); // should be int& not const int&
      using type = int&;
    };
  };
}

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

end of thread, other threads:[~2024-04-13 20:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-08 20:38 [Bug c++/112926] New: issues with nested lambdas and decltype of uncaptured local variable ppalka at gcc dot gnu.org
2023-12-08 20:42 ` [Bug c++/112926] " ppalka at gcc dot gnu.org
2024-04-13 20:31 ` pinskia 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).