https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115486
--- Comment #1 from Aleksandr Ivanov <sqsvp at ya dot ru> ---
Sorry for mistype
I casually omitted first line from code example
- Minimal code example to reproduce bug
template <auto... v>
struct s{
};
template <typename Value, typename... RetTypes, RetTypes... p(Value)>
struct s<p...>{
s();
};
int f(int) { return 0; }
int main(){
s<f>{};
}
