[Bug c++/106026] ICE: error reporting routines re-entered.

2023-05-17 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106026 --- Comment #3 from Andrew Pinski --- Reduced to: ``` struct k { template auto operator()(CPO cpo, Args &&...args) const -> decltype(tag_invoke(cpo, args...)) { return tag_invoke(cpo, args...); } }; k j{}; struct nn {

[Bug c++/106026] ICE: error reporting routines re-entered.

2023-05-17 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106026 --- Comment #2 from Andrew Pinski --- Reducing ...

[Bug c++/106026] ICE: error reporting routines re-entered.

2022-06-18 Thread ldalessandro at gmail dot com via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106026 --- Comment #1 from Luke Dalessandro --- Actually, I take back the part about it being invalid code, I'm not sure it's invalid. The godbolt link compiles on clang-14 without error.