https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93323
Marek Polacek <mpolacek at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|needs-reduction |
--- Comment #2 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Reduced (invalid):
template <long> struct a;
template <int, int> struct b {};
template <a> class c { template <int g, typename... e, e... d> c(b<g, d>...);
};
c f {
b<1, 3> {}
}
