https://gcc.gnu.org/bugzilla/show_bug.cgi?id=125181
Waffl3x <waffl3x at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |waffl3x at gcc dot gnu.org
--- Comment #3 from Waffl3x <waffl3x at gcc dot gnu.org> ---
Conversion also fails when converting to a variable, even in the
absence of deduction, despite the types being identical.
https://godbolt.org/z/bY118dGjP
```
template <typename... Ts>
void f(Ts const...) {}
void (*p)(int) = &f<int>;
```