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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2012-11-20 00:00:00         |2021-8-7

--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
We reject this:
struct foo {
    template<int*>
    void bar();
};

template<int*, int>
void foo::bar() {}

But incorrectly accepts:
struct foo {
    template<int*>
    void bar();
};

template<int*...>
void foo::bar() {}

Reply via email to