[Bug c++/65396] Function template default template arguments not merged

pinskia at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Sun Sep 12 20:08:05 GMT 2021


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65396

--- Comment #9 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Another simplified testcase:

template<class T> void f();
template<class T=int> void f() {}
int main() { f(); }


More information about the Gcc-bugs mailing list