[Bug c++/79056] [C++17] ICE with broken deduction guide
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79056 Martin Liška changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|
[Bug c++/79056] [C++17] ICE with broken deduction guide
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79056 --- Comment #1 from Jonathan Wakely --- A slightly different example: template struct unique_ptr { template unique_ptr(V) { } }; template struct default_delete { }; template unique_ptr(T*) -> unique_ptr; int main() { unique_ptr u(new