#include <variant> struct D { struct FService { int nFService_ = 0; }; std::variant<FService> data_; }; int main() { D d; return 0; }