// PR c++/102104 // A version of of using-variadic1.C where only the terminal name // uses a parameter pack. // { dg-do compile { target c++17 } } struct A { operator bool*(); }; struct B { operator bool*(); }; struct C { using target_type = bool*; }; template struct cls { template struct nested : private Bases... { using Bases::operator typename T::target_type...; }; }; cls::nested v1; bool* a1 = v1; // { dg-error "ambiguous" } cls::nested v2; bool* a2 = v2; cls::nested v3; bool* a3 = v3;