https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115400
Halalaluyafail3 <luigighiron at gmail dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Templates with CTAD |Templates with deduced
|parameters are not |constant template
|correctly demangled |parameters are not
| |correctly demangled
--- Comment #1 from Halalaluyafail3 <luigighiron at gmail dot com> ---
Actually, it seems more broad than just CTAD:
_Z3fooITnDaLi0EEvv
This is not correctly demangled, the following is what generates it:
template<auto>void foo(){}
int main(){foo<0>();}