[Bug c++/116417] SFINAE on std::is_destructible cannot handle pseudo destructor

2025-01-16 Thread ppalka at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=116417 Patrick Palka changed: What|Removed |Added Status|NEW |RESOLVED Target Milestone|---

[Bug c++/116417] SFINAE on std::is_destructible cannot handle pseudo destructor

2025-01-16 Thread cvs-commit at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=116417 --- Comment #4 from GCC Commits --- The master branch has been updated by Patrick Palka : https://gcc.gnu.org/g:232d3a73e18d6886f0a5781048a78da293fbb014 commit r15-6973-g232d3a73e18d6886f0a5781048a78da293fbb014 Author: Patrick Palka Date: T

[Bug c++/116417] SFINAE on std::is_destructible cannot handle pseudo destructor

2024-08-20 Thread ppalka at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=116417 Patrick Palka changed: What|Removed |Added Keywords||easyhack CC|

[Bug c++/116417] SFINAE on std::is_destructible cannot handle pseudo destructor

2024-08-19 Thread redi at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=116417 Jonathan Wakely changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug c++/116417] SFINAE on std::is_destructible cannot handle pseudo destructor

2024-08-19 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=116417 --- Comment #2 from Andrew Pinski --- Note for my reduced testcase, EDG rejects it because it is able to compile `t`: ``` "", line 12: error: a value of type "void" cannot be used to initialize an entity of type "int" int tt = f(0);