public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/104537] New: ICE when generic-lambda as function parameter fails to be converted to pointer to function
@ 2022-02-15  0:53 nickhuang99 at hotmail dot com
  2022-02-24 11:17 ` [Bug c++/104537] " marxin at gcc dot gnu.org
  2024-04-13  8:05 ` pinskia at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: nickhuang99 at hotmail dot com @ 2022-02-15  0:53 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 104537
           Summary: ICE when generic-lambda as function parameter fails to
                    be converted to pointer to function
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: nickhuang99 at hotmail dot com
  Target Milestone: ---

Consider this invalid conversion for this generic-lambda to pointer to function
which is defined by "decltype(+[](T&& t )->T{return t+1;}".
This ICE happens when original accepted parameter type changed from "T" to
"T&&".
See compiler explorer (https://www.godbolt.org/z/fde1bc3zE)

I suspect this is some related issue with another unconfirmed case PR104358.

template<typename T>
auto foo(T&& t, decltype(+[](T&& t )->T{return t+1;}) lam){
        return lam(t);
}
void test(){
        foo<int>(5, [](int t){return t+1;});
}


<source>:8:21: error: invalid user-defined conversion from
'test()::<lambda(int)>' to 'int (*)(int&&)' [-fpermissive]
    8 |         foo<int>(5, [](int t){return t+1;});
      |                     ^~~~~~~~~~~~~~~~~~~~~~
...
internal compiler error: error reporting routines re-entered.
0x2174365 warning_at(unsigned int, int, char const*, ...)
...

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

* [Bug c++/104537] ICE when generic-lambda as function parameter fails to be converted to pointer to function
  2022-02-15  0:53 [Bug c++/104537] New: ICE when generic-lambda as function parameter fails to be converted to pointer to function nickhuang99 at hotmail dot com
@ 2022-02-24 11:17 ` marxin at gcc dot gnu.org
  2024-04-13  8:05 ` pinskia at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: marxin at gcc dot gnu.org @ 2022-02-24 11:17 UTC (permalink / raw)
  To: gcc-bugs

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

Martin Liška <marxin at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |edlinger at gcc dot gnu.org,
                   |                            |marxin at gcc dot gnu.org

--- Comment #1 from Martin Liška <marxin at gcc dot gnu.org> ---
Likely started with r10-4254-ge0d91792eec490d1.

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

* [Bug c++/104537] ICE when generic-lambda as function parameter fails to be converted to pointer to function
  2022-02-15  0:53 [Bug c++/104537] New: ICE when generic-lambda as function parameter fails to be converted to pointer to function nickhuang99 at hotmail dot com
  2022-02-24 11:17 ` [Bug c++/104537] " marxin at gcc dot gnu.org
@ 2024-04-13  8:05 ` pinskia at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-04-13  8:05 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |14.0
         Resolution|---                         |FIXED
             Status|UNCONFIRMED                 |RESOLVED

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Fixed on the trunk by the recent lambda template patches.

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

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

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-15  0:53 [Bug c++/104537] New: ICE when generic-lambda as function parameter fails to be converted to pointer to function nickhuang99 at hotmail dot com
2022-02-24 11:17 ` [Bug c++/104537] " marxin at gcc dot gnu.org
2024-04-13  8:05 ` 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).