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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|                            |2024-06-11
     Ever confirmed|0                           |1
      Known to fail|                            |4.5.3
             Status|UNCONFIRMED                 |NEW

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Reduced (and modified to be C++98):
```
template<typename T>
int Func(T);
typedef int (*funcptrtype)(int);
funcptrtype fp1 = &Func<int>;
funcptrtype fp2 = (0, &Func<int>);
```

Reply via email to