Re: [PATCH] c++: variadic using-decl with parm pack in terminal name [PR102104]

2022-12-15 Thread Jason Merrill via Gcc-patches
On 12/15/22 11:15, Patrick Palka wrote: There's a curious corner case with variadic member using-decls: the terminal name can also contain a parameter pack, and only through naming a conversion function, e.g. using A::operator Ts...; We currently only handle parameter packs appearing in the

[PATCH] c++: variadic using-decl with parm pack in terminal name [PR102104]

2022-12-15 Thread Patrick Palka via Gcc-patches
There's a curious corner case with variadic member using-decls: the terminal name can also contain a parameter pack, and only through naming a conversion function, e.g. using A::operator Ts...; We currently only handle parameter packs appearing in the qualifying scope of a variadic using-decl;