https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105841
--- Comment #9 from Mike Spertus ---
Hi Jason,
Very exciting. Some additional tests: Both versions of
https://godbolt.org/z/aM93PEWcz should be included in the tests. There are
two versions of the deduction guides in the godbolt. Either guide sh
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105841
--- Comment #8 from Mike Spertus ---
Thanks, Jason! My course starts in 6 minutes, so I can't look at it now but
will give you feedback by 8:30AM tomorrow.
Mike
On Thu, Feb 9, 2023 at 3:07 PM jason at gcc dot gnu.org <
gcc-bugzi...@gcc.gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105841
--- Comment #3 from Mike Spertus ---
Thanks for the nudge, Jason. I will shake the bit rot off the POC and try to
polish it to something mergeable. OK if I ping you if I have questions?
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89477
Mike Spertus changed:
What|Removed |Added
CC||mike at spertus dot com
--- Comment #5
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: mike at spertus dot com
Target Milestone: ---
When I compile the following code with gcc-7-20170122,
template struct S {};
template
explicit S(T) -> S;
I get the error
error: decl-specifier in declaration
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: mike at spertus dot com
Target Milestone: ---
When I compile the following code with gcc-7-20170122,
template struct S { S(T t) {} };
template S(T, int = 7) -> S;
I get