// PR c++/108090 // { dg-do compile { target c++17 } } template struct As { operator T(); }; template struct AsAll : As... { using As::operator T...; }; AsAll x;