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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2014-05-29 00:00:00         |2017-5-16

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
With fewer warnings:

template<class T, T> struct X { };

int test() {
    X<int(), test> x;
    return 0;
}

Reply via email to