https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103684
--- Comment #3 from Nicolas Weidmann ---
Ok, thanks for the update!
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103684
Andrew Pinski changed:
What|Removed |Added
Resolution|--- |INVALID
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103684
--- Comment #1 from Andrew Pinski ---
Reduced testcase:
template struct f{};
template struct g{};
template class T> constexpr int hello()
{
return 2;
}
template class T> constexpr int hello()
{
return 3;
}
void foo()
{
auto i = hel