[Bug c++/125779] [c++] nested requirement check failure
"ppalka at gcc dot gnu.org via Gcc-bugs" <[email protected]>
| Newsgroups | gmane.comp.gcc.bugs |
|---|---|
| Message-ID | <[email protected]/bugzilla/> |
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=125779
Patrick Palka <ppalka at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
CC| |ppalka at gcc dot gnu.org
Last reconfirmed| |2026-08-12
Ever confirmed|0 |1
--- Comment #2 from Patrick Palka <ppalka at gcc dot gnu.org> ---
Never worked. Reduced:
template <class>
struct bind {
auto f() -> void requires false;
auto f() -> void;
};
int main() {
&bind<int>::f;
}